00001 #ifndef TEST_GAME_STATE_HANDLER_H 00002 #define TEST_GAME_STATE_HANDLER_H 00003 00004 #include "../constants.h" 00005 #include "gamestatehandler.h" 00006 00007 using namespace std; 00008 00009 class TestGameStateHandler : public GameStateHandler { 00010 private: 00011 char state[1024]; 00012 00013 public: 00014 TestGameStateHandler(); 00015 virtual ~TestGameStateHandler(); 00016 00017 // the producer 00018 char *getGameState(); 00019 00020 }; 00021 00022 #endif
1.4.0