// file : odb/sqlite/text-stream.hxx // copyright : Copyright (c) 2005-2017 Code Synthesis Tools CC // license : GNU GPL v2; see accompanying LICENSE file #ifndef ODB_SQLITE_TEXT_STREAM_HXX #define ODB_SQLITE_TEXT_STREAM_HXX #include #include #include namespace odb { namespace sqlite { class text_stream: public stream { public: text_stream (const text& b, bool rw) : stream (b.db ().c_str (), b.table ().c_str (), b.column ().c_str (), b.rowid (), rw) {} }; } } #include #endif // ODB_SQLITE_TEXT_STREAM_HXX