YAPOG  0.0.1
Yet Another Pokemon Online Game
DatabaseTransaction.hpp
Go to the documentation of this file.
1 #ifndef YAPOG_DATABASETRANSACTION_HPP
2 # define YAPOG_DATABASETRANSACTION_HPP
3 
4 # include "YAPOG/Macros.hpp"
7 # include "pgstream/pgstream.hpp"
8 
9 namespace yap
10 {
12  {
14  public:
15  DatabaseTransaction (pgs::pg_cnx& databaseConnection);
16 
19  void Commit();
20  void RollBack();
22 
23  private:
25  };
26 } // namespace yap
27 
28 #endif // YAPOG_DATABASETRANSACTION_HPP