2016-01-28 14:52:40 +01:00
|
|
|
/** @file
|
|
|
|
|
*
|
|
|
|
|
* @par History
|
|
|
|
|
*/
|
2016-02-11 22:54:43 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
#include "basiciomod.h"
|
2016-12-20 23:53:32 +01:00
|
|
|
#include "../../clib/logfacility.h"
|
2018-01-29 21:55:48 +01:00
|
|
|
|
2019-11-10 22:04:08 +01:00
|
|
|
#include <module_defs/basicio.h>
|
2016-02-11 22:54:43 +01:00
|
|
|
|
2016-02-19 19:26:35 +01:00
|
|
|
namespace Pol
|
|
|
|
|
{
|
|
|
|
|
namespace Module
|
|
|
|
|
{
|
2016-12-14 21:50:23 +01:00
|
|
|
BasicIoExecutorModule::BasicIoExecutorModule( Bscript::Executor& exec )
|
2020-02-08 09:21:35 +01:00
|
|
|
: Bscript::TmplExecutorModule<BasicIoExecutorModule, Bscript::ExecutorModule>( exec )
|
2016-12-14 21:50:23 +01:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2019-10-17 22:37:26 +02:00
|
|
|
Bscript::BObjectImp* BasicIoExecutorModule::mf_Print()
|
2016-02-19 19:26:35 +01:00
|
|
|
{
|
|
|
|
|
INFO_PRINT << exec.getParamImp( 0 )->getStringRep() << "\n";
|
|
|
|
|
return new Bscript::UninitObject;
|
|
|
|
|
}
|
2019-11-10 22:04:08 +01:00
|
|
|
} // namespace Module
|
|
|
|
|
} // namespace Pol
|