Advertisement
Guest User

Untitled

a guest
Aug 16th, 2017
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.38 KB | None | 0 0
  1. /**
  2.  * XMLMessage.h
  3.  * ~~~~~~~~~~~~~~
  4.  *
  5.  */
  6.  
  7.  
  8. #ifndef XML_MESSAGE_H
  9. #define XML_MESSAGE_H
  10.  
  11. #include <cstdlib>
  12. #include <iostream>
  13.  
  14. using std::string;
  15.  
  16. class XMLMessage
  17. {
  18. public :
  19.     const string sAction();
  20.     const string sMap_name();
  21.     void parse_string(const string s);
  22.     const int x = 100;
  23.    
  24. private :
  25.     string _action;
  26.     string _map_name;
  27. };
  28.  
  29.  
  30. #endif  // XML_MESSAGE_H
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement