1 #ifndef __PROJECTTAKE_H__
2 #define __PROJECTTAKE_H__
4 #include "motorcommon.h"
6 __MOTOR_BEGIN_NAMESPACE
10 enum takefromkind
{ folder
, text
} kind
;
11 string placefrom
, placeto
, sourcetemplate
;
15 projecttake(const string
&definition
);
18 void exec(const string
&pfrom
);
19 void undo(const string
&pfrom
);
21 string
getsourcetemplate();
26 #ifdef __MOTOR_USE_NAMESPACES
28 using motor::projecttake
;