00001 /* 00002 Copyright 1996-2000 00003 Simon Whiteside 00004 00005 * $Id: skScriptedExecutable.h-source.html,v 1.1 2001/03/05 16:22:45 sdw Exp $ 00006 */ 00007 00008 #ifndef skSCRIPTEDEXECUTABLE_H 00009 #define skSCRIPTEDEXECUTABLE_H 00010 00011 #include "skTreeNodeObject.h" 00012 00017 class 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