/usr/include/odb/mysql/statement-cache.hxx is in libodb-mysql-dev 2.4.0-1ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 | // file : odb/mysql/statement-cache.hxx
// copyright : Copyright (c) 2005-2015 Code Synthesis Tools CC
// license : GNU GPL v2; see accompanying LICENSE file
#ifndef ODB_MYSQL_STATEMENT_CACHE_HXX
#define ODB_MYSQL_STATEMENT_CACHE_HXX
#include <odb/pre.hxx>
#include <map>
#include <typeinfo>
#include <odb/forward.hxx>
#include <odb/traits.hxx>
#include <odb/mysql/version.hxx>
#include <odb/mysql/forward.hxx>
#include <odb/mysql/statements-base.hxx>
#include <odb/details/shared-ptr.hxx>
#include <odb/details/type-info.hxx>
#include <odb/mysql/details/export.hxx>
namespace odb
{
namespace mysql
{
class LIBODB_MYSQL_EXPORT statement_cache
{
public:
statement_cache (connection& conn)
: conn_ (conn),
version_seq_ (conn.database ().schema_version_sequence ()) {}
template <typename T>
typename object_traits_impl<T, id_mysql>::statements_type&
find_object ();
template <typename T>
view_statements<T>&
find_view ();
private:
typedef std::map<const std::type_info*,
details::shared_ptr<statements_base>,
details::type_info_comparator> map;
connection& conn_;
unsigned int version_seq_;
map map_;
};
}
}
#include <odb/mysql/statement-cache.txx>
#include <odb/post.hxx>
#endif // ODB_MYSQL_STATEMENT_CACHE_HXX
|