summaryrefslogtreecommitdiff
path: root/boost/mssql/template/test.hxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2012-01-13 12:07:50 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2012-01-20 15:45:46 +0200
commit806df44f9182ebd1cb86bc31189370a3e595d3b9 (patch)
treec9f2acbc6935ffdb6f85256b6ba55a36e3ef9e64 /boost/mssql/template/test.hxx
parent506edcf7bb2a9c099f9aebc84a0a0d18c8dd45d7 (diff)
Boost profile implementation for SQL Server
Diffstat (limited to 'boost/mssql/template/test.hxx')
-rw-r--r--boost/mssql/template/test.hxx27
1 files changed, 27 insertions, 0 deletions
diff --git a/boost/mssql/template/test.hxx b/boost/mssql/template/test.hxx
new file mode 100644
index 0000000..ab41549
--- /dev/null
+++ b/boost/mssql/template/test.hxx
@@ -0,0 +1,27 @@
+// file : boost/mssql/template/test.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 TEST_HXX
+#define TEST_HXX
+
+#include <odb/core.hxx>
+
+#pragma db object
+struct object
+{
+ object (unsigned long id)
+ : id_ (id)
+ {
+ }
+
+ object ()
+ {
+ }
+
+ #pragma db id
+ unsigned long id_;
+};
+
+#endif // TEST_HXX