// file : odb/statement.hxx // copyright : Copyright (c) 2005-2012 Code Synthesis Tools CC // license : GNU GPL v2; see accompanying LICENSE file #ifndef ODB_STATEMENT_HXX #define ODB_STATEMENT_HXX #include #include #include #include namespace odb { class LIBODB_EXPORT statement: public details::shared_base { public: virtual ~statement () = 0; statement () {} private: statement (const statement&); statement& operator= (const statement&); public: virtual const char* text () const = 0; }; } #include #endif // ODB_MYSQL_STATEMENT_HXX