Improved transaction handling.
parent
b1e1388135
commit
71325fa717
@ -0,0 +1,12 @@
|
|||||||
|
#include "transaction.h"
|
||||||
|
|
||||||
|
Transaction::Transaction()
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
Transaction::~Transaction()
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,12 @@
|
|||||||
|
#ifndef TRANSACTION_H
|
||||||
|
#define TRANSACTION_H
|
||||||
|
|
||||||
|
|
||||||
|
class Transaction
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
Transaction();
|
||||||
|
~Transaction();
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif // TRANSACTION_H
|
Loading…
Reference in New Issue