summaryrefslogtreecommitdiff
path: root/libodbcpp/odbc-modifycommand.h
diff options
context:
space:
mode:
Diffstat (limited to 'libodbcpp/odbc-modifycommand.h')
-rw-r--r--libodbcpp/odbc-modifycommand.h11
1 files changed, 5 insertions, 6 deletions
diff --git a/libodbcpp/odbc-modifycommand.h b/libodbcpp/odbc-modifycommand.h
index 3993d63..de3f7e0 100644
--- a/libodbcpp/odbc-modifycommand.h
+++ b/libodbcpp/odbc-modifycommand.h
@@ -1,17 +1,16 @@
#ifndef ODBC_MODIFYCOMMAND_H
#define ODBC_MODIFYCOMMAND_H
-#include <modifycommand.h>
#include "odbc-command.h"
+#include <modifycommand.h>
namespace ODBC {
class ModifyCommand : public Command, public DB::ModifyCommand {
- public:
- ModifyCommand(const Connection &, const std::string & sql);
- // Execute the command and return effected row count
- unsigned int execute(bool allowNoChange = true) override;
+ public:
+ ModifyCommand(const Connection &, const std::string & sql);
+ // Execute the command and return effected row count
+ unsigned int execute(bool allowNoChange = true) override;
};
}
#endif
-