summaryrefslogtreecommitdiff
path: root/common/lifecycle/test.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'common/lifecycle/test.hxx')
-rw-r--r--common/lifecycle/test.hxx27
1 files changed, 0 insertions, 27 deletions
diff --git a/common/lifecycle/test.hxx b/common/lifecycle/test.hxx
deleted file mode 100644
index 8d260d2..0000000
--- a/common/lifecycle/test.hxx
+++ /dev/null
@@ -1,27 +0,0 @@
-// file : common/lifecycle/test.hxx
-// license : GNU GPL v2; see accompanying LICENSE file
-
-#ifndef TEST_HXX
-#define TEST_HXX
-
-#include <string>
-#include <odb/core.hxx>
-
-#pragma db object
-struct object
-{
- object (unsigned long id)
- : id_ (id)
- {
- }
-
- object ()
- {
- }
-
- #pragma db id
- unsigned long id_;
- std::string str_;
-};
-
-#endif // TEST_HXX