summaryrefslogtreecommitdiff
path: root/libsqlitepp/modifycommand.h
diff options
context:
space:
mode:
authorDan Goodliffe <dan@randomdan.homeip.net>2015-12-24 04:13:24 +0000
committerDan Goodliffe <dan@randomdan.homeip.net>2015-12-24 04:13:24 +0000
commit5dd91c7b80443c1f0e747088159c4d8b78d1856d (patch)
tree226331b6026e722f6a69765963ff19a9436155c1 /libsqlitepp/modifycommand.h
parentUse parent glibmm (diff)
downloadlibdbpp-sqlite-5dd91c7b80443c1f0e747088159c4d8b78d1856d.tar.bz2
libdbpp-sqlite-5dd91c7b80443c1f0e747088159c4d8b78d1856d.tar.xz
libdbpp-sqlite-5dd91c7b80443c1f0e747088159c4d8b78d1856d.zip
SQLite files prefixed with sqlite-
Diffstat (limited to 'libsqlitepp/modifycommand.h')
-rw-r--r--libsqlitepp/modifycommand.h25
1 files changed, 0 insertions, 25 deletions
diff --git a/libsqlitepp/modifycommand.h b/libsqlitepp/modifycommand.h
deleted file mode 100644
index 7f052ca..0000000
--- a/libsqlitepp/modifycommand.h
+++ /dev/null
@@ -1,25 +0,0 @@
-#ifndef SQLITE_MODIFYCOMMAND_H
-#define SQLITE_MODIFYCOMMAND_H
-
-#include <modifycommand.h>
-#include "command.h"
-
-namespace SQLite {
- class Connection;
- class ModifyCommand : public DB::ModifyCommand, public Command {
- public:
- ModifyCommand(const Connection *, const std::string & sql);
- virtual ~ModifyCommand();
-
- unsigned int execute(bool);
-
- private:
- void prepare() const;
- mutable bool prepared;
- };
-}
-
-#endif
-
-
-