and adapt to AsciiInputOutput - seems to work...

This commit is contained in:
Bernhard Amann 2012-12-03 14:14:40 -08:00
parent b3dba9f0cc
commit 9c09dee294
7 changed files with 51 additions and 100 deletions

View file

@ -12,8 +12,11 @@
#include <vector>
#include "../ReaderBackend.h"
#include "../../AsciiInputOutput.h"
#include "sqlite3.h"
namespace input { namespace reader {
class SQLite : public ReaderBackend {
@ -48,6 +51,8 @@ private:
sqlite3 *db;
sqlite3_stmt *st;
AsciiInputOutput* io;
};