// file : odb/tracer/database.hxx // author : Boris Kolpackov // copyright : Copyright (c) 2009-2010 Code Synthesis Tools CC // license : GNU GPL v2; see accompanying LICENSE file #ifndef ODB_TRACER_DATABASE_HXX #define ODB_TRACER_DATABASE_HXX #include #include #include #include namespace odb { namespace tracer { class LIBODB_TRACER_EXPORT database: public odb::database { public: virtual ~database (); virtual transaction_impl* begin_transaction (); }; } } #include #endif // ODB_TRACER_DATABASE_HXX