aboutsummaryrefslogtreecommitdiff
path: root/odb/schema-catalog.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'odb/schema-catalog.hxx')
-rw-r--r--odb/schema-catalog.hxx34
1 files changed, 34 insertions, 0 deletions
diff --git a/odb/schema-catalog.hxx b/odb/schema-catalog.hxx
new file mode 100644
index 0000000..e0e0435
--- /dev/null
+++ b/odb/schema-catalog.hxx
@@ -0,0 +1,34 @@
+// file : odb/schema-catalog.hxx
+// author : Boris Kolpackov <boris@codesynthesis.com>
+// copyright : Copyright (c) 2009-2011 Code Synthesis Tools CC
+// license : GNU GPL v2; see accompanying LICENSE file
+
+#ifndef ODB_SCHEMA_CATALOG_HXX
+#define ODB_SCHEMA_CATALOG_HXX
+
+#include <odb/pre.hxx>
+
+#include <string>
+
+#include <odb/forward.hxx>
+
+#include <odb/details/export.hxx>
+
+namespace odb
+{
+ class LIBODB_EXPORT schema_catalog
+ {
+ public:
+ static void
+ create_schema (database&, const std::string& name = "");
+ };
+
+ namespace core
+ {
+ using odb::schema_catalog;
+ }
+}
+
+#include <odb/post.hxx>
+
+#endif // ODB_SCHEMA_CATALOG_HXX