YAPOG  0.0.1
Yet Another Pokemon Online Game
GameMessage.hpp
Go to the documentation of this file.
1 #ifndef YAPOG_GAMEMESSAGE_HPP
2 # define YAPOG_GAMEMESSAGE_HPP
3 
4 # include "YAPOG/Macros.hpp"
5 # include "YAPOG/System/String.hpp"
6 
7 namespace yap
8 {
10  {
12 
13  public:
14 
15  GameMessage ();
16  ~GameMessage ();
17 
18  const String& GetContent () const;
19  const String& GetSenderName () const;
20 
21  void SetContent (const String& content);
22  void SetSenderName (const String& senderName);
23 
24  private:
25 
28  };
29 } // namespace yap
30 
31 #endif // YAPOG_GAMEMESSAGE_HPP