aboutsummaryrefslogtreecommitdiff
path: root/tracer/template/test.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'tracer/template/test.hxx')
-rw-r--r--tracer/template/test.hxx27
1 files changed, 0 insertions, 27 deletions
diff --git a/tracer/template/test.hxx b/tracer/template/test.hxx
deleted file mode 100644
index 93b7b93..0000000
--- a/tracer/template/test.hxx
+++ /dev/null
@@ -1,27 +0,0 @@
-// file : tracer/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