blob: 14a396a0cdf144222de502631794ce102a23ea05 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
#include "functionwrite.h"
#include "filemgr.h"
#include <bu/plugger.h>
PluginInterface3( pluginFunctionWrite, write, FunctionWrite, Function,
"Mike Buland", 0, 1 );
FunctionWrite::FunctionWrite()
{
}
FunctionWrite::~FunctionWrite()
{
}
Bu::String FunctionWrite::getName() const
{
return "write";
}
Variable FunctionWrite::call( Variable &input, VarList lParams )
{
if( lParams.getSize() != 1 )
{
throw Bu::ExceptionBase(
"write takes one parameter, the string to write."
);
}
FileMgr::getInstance().get( (ptrdiff_t)input.getOpaque() ).write(
lParams.first().toString()
);
return Variable();
}
|