// file : odb/mysql/forward.hxx // author : Boris Kolpackov // copyright : Copyright (c) 2005-2011 Code Synthesis Tools CC // license : GNU GPL v2; see accompanying LICENSE file #ifndef ODB_MYSQL_FORWARD_HXX #define ODB_MYSQL_FORWARD_HXX #include #include namespace odb { namespace mysql { class database; class connection; typedef details::shared_ptr connection_ptr; class connection_factory; class transaction; class query; // Implementation details. // class binding; class select_statement; template class object_statements; template class view_statements; template class container_statements; } namespace details { template <> struct counter_type { typedef shared_base counter; }; } } #include #endif // ODB_MYSQL_FORWARD_HXX