aboutsummaryrefslogtreecommitdiff
path: root/common/definition/test.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'common/definition/test.hxx')
-rw-r--r--common/definition/test.hxx27
1 files changed, 27 insertions, 0 deletions
diff --git a/common/definition/test.hxx b/common/definition/test.hxx
new file mode 100644
index 0000000..51a5029
--- /dev/null
+++ b/common/definition/test.hxx
@@ -0,0 +1,27 @@
+// file : common/definition/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
+
+#ifdef _WIN32
+# include <winsock2.h> // timeval
+#else
+# include <sys/time.h> // timeval
+#endif
+
+#include <odb/core.hxx>
+
+#include "time-mapping.hxx"
+
+#pragma db object
+struct object
+{
+ #pragma db id auto
+ unsigned long id;
+
+ timeval time;
+};
+
+#endif // TEST_HXX