00001
00002
00003
00004
00005
00006
00007
00008 #ifndef skSCRIPTEDEXECUTABLE_H
00009 #define skSCRIPTEDEXECUTABLE_H
00010
00011 #include "skTreeNodeObject.h"
00012
00017 class CLASSEXPORT skScriptedExecutable : public skTreeNodeObject
00018 {
00019 public:
00023 skScriptedExecutable(const skString& filename);
00027 virtual ~skScriptedExecutable();
00028 private:
00032 skScriptedExecutable(const skScriptedExecutable&);
00036 skScriptedExecutable& operator=(const skScriptedExecutable&);
00037 };
00038 #endif