summaryrefslogtreecommitdiff
path: root/libmysqlpp/my-command.h
diff options
context:
space:
mode:
Diffstat (limited to 'libmysqlpp/my-command.h')
-rw-r--r--libmysqlpp/my-command.h26
1 files changed, 13 insertions, 13 deletions
diff --git a/libmysqlpp/my-command.h b/libmysqlpp/my-command.h
index 2de1b85..71f7d51 100644
--- a/libmysqlpp/my-command.h
+++ b/libmysqlpp/my-command.h
@@ -12,24 +12,24 @@ namespace MySQL {
Command(const Connection *, const std::string & sql);
virtual ~Command() = 0;
- void bindParamI(unsigned int, int);
- void bindParamI(unsigned int, long int);
- void bindParamI(unsigned int, long long int);
- void bindParamI(unsigned int, unsigned int);
- void bindParamI(unsigned int, long unsigned int);
- void bindParamI(unsigned int, long long unsigned int);
+ void bindParamI(unsigned int, int) override;
+ void bindParamI(unsigned int, long int) override;
+ void bindParamI(unsigned int, long long int) override;
+ void bindParamI(unsigned int, unsigned int) override;
+ void bindParamI(unsigned int, long unsigned int) override;
+ void bindParamI(unsigned int, long long unsigned int) override;
- void bindParamB(unsigned int, bool);
+ void bindParamB(unsigned int, bool) override;
- void bindParamF(unsigned int, double);
- void bindParamF(unsigned int, float);
+ void bindParamF(unsigned int, double) override;
+ void bindParamF(unsigned int, float) override;
- void bindParamS(unsigned int, const Glib::ustring&);
+ void bindParamS(unsigned int, const Glib::ustring&) override;
- void bindParamT(unsigned int, const boost::posix_time::time_duration &);
- void bindParamT(unsigned int, const boost::posix_time::ptime &);
+ void bindParamT(unsigned int, const boost::posix_time::time_duration &) override;
+ void bindParamT(unsigned int, const boost::posix_time::ptime &) override;
- void bindNull(unsigned int);
+ void bindNull(unsigned int) override;
protected:
void bindParams();
void * realloc(void * buffer, size_t size);