summaryrefslogtreecommitdiff
path: root/odb-tests/sqlite/stream/test.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'odb-tests/sqlite/stream/test.hxx')
-rw-r--r--odb-tests/sqlite/stream/test.hxx37
1 files changed, 0 insertions, 37 deletions
diff --git a/odb-tests/sqlite/stream/test.hxx b/odb-tests/sqlite/stream/test.hxx
deleted file mode 100644
index 9189a87..0000000
--- a/odb-tests/sqlite/stream/test.hxx
+++ /dev/null
@@ -1,37 +0,0 @@
-// file : sqlite/stream/test.hxx
-// license : GNU GPL v2; see accompanying LICENSE file
-
-#ifndef TEST_HXX
-#define TEST_HXX
-
-#include <vector>
-
-#include <odb/core.hxx>
-#include <odb/nullable.hxx>
-
-#include <odb/sqlite/text.hxx>
-#include <odb/sqlite/blob.hxx>
-
-#pragma db object
-struct object
-{
- #pragma db id auto
- unsigned long id;
-
- odb::sqlite::text t;
-
- #pragma db column("_123foo_bar")
- odb::sqlite::blob b;
-
- std::vector<odb::sqlite::blob> bv;
-
- odb::nullable<odb::sqlite::blob> nb;
-};
-
-#pragma db view object(object)
-struct view
-{
- odb::sqlite::blob b;
-};
-
-#endif // TEST_HXX