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