aboutsummaryrefslogtreecommitdiff
path: root/odb/schema-catalog-impl.hxx
blob: 9b94cf1edd7ffd5bd5e1a891daaff15402c38e54 (plain)
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
// file      : odb/schema-catalog-impl.hxx
// copyright : Copyright (c) 2009-2012 Code Synthesis Tools CC
// license   : GNU GPL v2; see accompanying LICENSE file

#ifndef ODB_SCHEMA_CATALOG_IMPL_HXX
#define ODB_SCHEMA_CATALOG_IMPL_HXX

#include <odb/pre.hxx>

#include <cstddef>

#include <odb/forward.hxx>

#include <odb/details/export.hxx>

namespace odb
{
  struct schema_catalog_impl;

  // Translation unit initializer.
  //
  struct LIBODB_EXPORT schema_catalog_init
  {
    static schema_catalog_impl* catalog;
    static std::size_t count;

    schema_catalog_init ();
    ~schema_catalog_init ();
  };

  static const schema_catalog_init schema_catalog_init_;

  // Catalog entry registration.
  //
  struct LIBODB_EXPORT schema_catalog_entry
  {
    schema_catalog_entry (
      database_id id,
      const char* name,
      bool (*create_function) (database&, unsigned short pass, bool drop));
  };
}

#include <odb/post.hxx>

#endif // ODB_SCHEMA_CATALOG_IMPL_HXX