YAPOG  0.0.1
Yet Another Pokemon Online Game
AccountInsertRequest.hpp
Go to the documentation of this file.
1 #ifndef YAPOG_ACCOUNTINSERTREQUEST_HPP
2 # define YAPOG_ACCOUNTINSERTREQUEST_HPP
3 
4 # include "YAPOG/Macros.hpp"
5 # include "YAPOG/Game/ID.hpp"
6 # include "YAPOG/System/String.hpp"
8 
9 namespace yse
10 {
11  class AccountTable;
12 
14  {
16  public:
17  AccountInsertRequest (const AccountTable& accountTable);
18  virtual ~AccountInsertRequest();
19 
20  const yap::ID& GetID ();
21 
24  virtual bool Insert (yap::DatabaseManager& databaseManager);
26 
27  private:
30  };
31 } // namespace yse
32 
33 #endif // YAPOG_ACCOUNTINSERTREQUEST_HPP