1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2024-11-08 16:57:16 +01:00
SqMod/source/Library/SQLite/Transaction.hpp
2015-11-01 10:16:49 +02:00

64 lines
1.7 KiB
C++

#ifndef _LIBRARY_SQLITE_TRANSACTION_HPP_
#define _LIBRARY_SQLITE_TRANSACTION_HPP_
// ------------------------------------------------------------------------------------------------
namespace SqMod {
namespace SQLite {
/* ------------------------------------------------------------------------------------------------
* ...
*/
class Transaction
{
public:
/* --------------------------------------------------------------------------------------------
* ...
*/
Transaction();
/* --------------------------------------------------------------------------------------------
* ...
*/
Transaction(const Transaction & o);
/* --------------------------------------------------------------------------------------------
* ...
*/
Transaction(Transaction && o);
/* --------------------------------------------------------------------------------------------
* ...
*/
~Transaction();
/* --------------------------------------------------------------------------------------------
* ...
*/
Transaction & operator = (const Transaction & o);
/* --------------------------------------------------------------------------------------------
* ...
*/
Transaction & operator = (Transaction && o);
/* --------------------------------------------------------------------------------------------
* ...
*/
protected:
// --------------------------------------------------------------------------------------------
private:
// --------------------------------------------------------------------------------------------
};
} // Namespace:: SQLite
} // Namespace:: SqMod
#endif // _LIBRARY_SQLITE_TRANSACTION_HPP_