diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2015-12-24 04:13:24 +0000 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2015-12-24 04:13:24 +0000 |
commit | 5dd91c7b80443c1f0e747088159c4d8b78d1856d (patch) | |
tree | 226331b6026e722f6a69765963ff19a9436155c1 /libsqlitepp/modifycommand.h | |
parent | Use parent glibmm (diff) | |
download | libdbpp-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.h | 25 |
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 - - - |