// file : odb/sqlite/blob-stream.hxx // copyright : Copyright (c) 2005-2015 Code Synthesis Tools CC // license : GNU GPL v2; see accompanying LICENSE file #ifndef ODB_SQLITE_BLOB_STREAM_HXX #define ODB_SQLITE_BLOB_STREAM_HXX #include #include #include 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 #endif // ODB_SQLITE_BLOB_STREAM_HXX