summaryrefslogtreecommitdiff
path: root/odb/sqlite/blob-stream.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'odb/sqlite/blob-stream.hxx')
-rw-r--r--odb/sqlite/blob-stream.hxx31
1 files changed, 0 insertions, 31 deletions
diff --git a/odb/sqlite/blob-stream.hxx b/odb/sqlite/blob-stream.hxx
deleted file mode 100644
index caa7c24..0000000
--- a/odb/sqlite/blob-stream.hxx
+++ /dev/null
@@ -1,31 +0,0 @@
-// file : odb/sqlite/blob-stream.hxx
-// license : GNU GPL v2; see accompanying LICENSE file
-
-#ifndef ODB_SQLITE_BLOB_STREAM_HXX
-#define ODB_SQLITE_BLOB_STREAM_HXX
-
-#include <odb/pre.hxx>
-
-#include <odb/sqlite/blob.hxx>
-#include <odb/sqlite/stream.hxx>
-
-namespace odb
-{
- namespace sqlite
- {
- class blob_stream: public stream
- {
- public:
- blob_stream (const blob& b, bool rw)
- : stream (b.db ().c_str (),
- b.table ().c_str (),
- b.column ().c_str (),
- b.rowid (),
- rw) {}
- };
- }
-}
-
-#include <odb/post.hxx>
-
-#endif // ODB_SQLITE_BLOB_STREAM_HXX