00001 /* 00002 Copyright 1996-2000 00003 Simon Whiteside 00004 $Id: InheritsExecutable_h-source.html,v 1.11 2001/11/05 19:22:33 sdw Exp $ 00005 */ 00006 #ifndef INHERITSEXECUTABLE_H 00007 #define INHERITSEXECUTABLE_H 00008 00009 #include "InheritsElement.h" 00010 #include "sax/InputSource.hpp" 00011 00015 class InheritsExecutable : public InheritsElement { 00016 public: 00020 InheritsExecutable(const skString& fileName); 00025 void load(const skString& scriptLocation,InputSource& in); 00029 void load(const skString& fileName); 00030 private: 00034 InheritsExecutable(const InheritsExecutable&); 00038 InheritsExecutable& operator=(const InheritsExecutable&); 00039 }; 00040 00041 #endif