diff options
Diffstat (limited to 'libsqlitepp/selectcommand.h')
-rw-r--r-- | libsqlitepp/selectcommand.h | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/libsqlitepp/selectcommand.h b/libsqlitepp/selectcommand.h deleted file mode 100644 index c3ad01d..0000000 --- a/libsqlitepp/selectcommand.h +++ /dev/null @@ -1,21 +0,0 @@ -#ifndef SQLITE_SELECTCOMMAND_H -#define SQLITE_SELECTCOMMAND_H - -#include <selectcommand.h> -#include "command.h" - -namespace SQLite { - class Connection; - class ColumnBase; - class SelectCommand : public DB::SelectCommand, public Command { - public: - SelectCommand(const Connection *, const std::string & sql); - - bool fetch(); - void execute(); - }; -} - -#endif - - |