00001 #ifndef DUMMYPKG_H_DEF 00002 #define DUMMYPKG_H_DEF 00003 00004 #include "TelepatiPkg.h" 00005 #include <string> 00006 00007 using namespace std; 00008 00013 class DummyPkg : public TelepatiPkg { 00014 public: 00017 DummyPkg(int a, bool ack=false ); 00021 DummyPkg(byte* ptr); 00022 00024 virtual ~DummyPkg(); 00025 00028 virtual TelepatiPkg* clone(); 00029 00033 byte* getMsg(); 00035 inline string getString() { return str; }; 00036 00037 protected: 00038 string str; 00039 //byte* bomb; /**< array di spazzatura*/ 00040 }; 00041 #endif