actually make sqlite work again (tests passed because the writer

was not actually defined because of the define.)
This commit is contained in:
Bernhard Amann 2013-05-13 19:27:11 -07:00
parent 2b8c2f2316
commit 6c99df508c
10 changed files with 179 additions and 98 deletions

View file

@ -9,9 +9,7 @@
#include "readers/Raw.h"
#include "readers/Benchmark.h"
#ifdef USE_SQLITE
#include "readers/SQLite.h"
#endif
#include "Event.h"
#include "EventHandler.h"
@ -38,9 +36,7 @@ ReaderDefinition input_readers[] = {
{ BifEnum::Input::READER_ASCII, "Ascii", 0, reader::Ascii::Instantiate },
{ BifEnum::Input::READER_RAW, "Raw", 0, reader::Raw::Instantiate },
{ BifEnum::Input::READER_BENCHMARK, "Benchmark", 0, reader::Benchmark::Instantiate },
#ifdef USE_SQLITE
{ BifEnum::Input::READER_SQLITE, "SQLite", 0, reader::SQLite::Instantiate },
#endif
// End marker
{ BifEnum::Input::READER_DEFAULT, "None", 0, (ReaderBackend* (*)(ReaderFrontend* frontend))0 }