aboutsummaryrefslogtreecommitdiff
path: root/common/schema/embedded/basics/test.hxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2013-02-08 18:21:32 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2013-02-08 18:21:32 +0200
commit9208de71c16ce8d676f9da1b71020c12384018c9 (patch)
treeaec987640aee52757f8a3140220379c428426469 /common/schema/embedded/basics/test.hxx
parent42123e65fab590f5b052f53ad755fba9bded0c24 (diff)
Add schema_catalog::exists() function
Diffstat (limited to 'common/schema/embedded/basics/test.hxx')
-rw-r--r--common/schema/embedded/basics/test.hxx24
1 files changed, 24 insertions, 0 deletions
diff --git a/common/schema/embedded/basics/test.hxx b/common/schema/embedded/basics/test.hxx
new file mode 100644
index 0000000..99e1aac
--- /dev/null
+++ b/common/schema/embedded/basics/test.hxx
@@ -0,0 +1,24 @@
+// file : common/schema/embedded/basics/test.hxx
+// copyright : Copyright (c) 2009-2012 Code Synthesis Tools CC
+// license : GNU GPL v2; see accompanying LICENSE file
+
+#ifndef TEST_HXX
+#define TEST_HXX
+
+#include <string>
+#include <vector>
+
+#include <odb/core.hxx>
+
+#pragma db object
+struct object
+{
+ #pragma db auto id
+ unsigned long id;
+
+ std::string str;
+
+ std::vector<int> nums;
+};
+
+#endif // TEST_HXX