21 lines
291 B
C++
21 lines
291 B
C++
#ifndef TRANSACTION_H
|
|
#define TRANSACTION_H
|
|
|
|
#include <odb/database.hxx>
|
|
#include <odb/transaction.hxx>
|
|
|
|
class Transaction
|
|
{
|
|
public:
|
|
Transaction();
|
|
~Transaction();
|
|
|
|
void commit();
|
|
|
|
private:
|
|
odb::transaction *m_tr;
|
|
static bool m_inTransaction;
|
|
};
|
|
|
|
#endif // TRANSACTION_H
|