YAPOG  0.0.1
Yet Another Pokemon Online Game
IInsertRequest.hpp
Go to the documentation of this file.
1 #ifndef YAPOG_IINSERTABLE_HPP
2 # define YAPOG_IINSERTABLE_HPP
3 
6 
7 namespace yse
8 {
9  struct IInsertRequest : public IRequest
10  {
11  virtual ~IInsertRequest () {};
12 
13  virtual bool Insert (yap::DatabaseManager& databaseManager) = 0;
14  };
15 }
16 
17 #endif // YAPOG_ITABLE_HPP