diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2017-01-01 14:55:02 +0000 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2017-01-01 14:55:02 +0000 |
commit | 77ce15afad9936a27cd0572eac01a7c9993a5e20 (patch) | |
tree | 858485453a326a4a070f5a12eb6eb8ab01675afe | |
parent | Support registering DB mock implementations as factories (diff) | |
download | libdbpp-77ce15afad9936a27cd0572eac01a7c9993a5e20.tar.bz2 libdbpp-77ce15afad9936a27cd0572eac01a7c9993a5e20.tar.xz libdbpp-77ce15afad9936a27cd0572eac01a7c9993a5e20.zip |
Fix up doxygen comments
-rw-r--r-- | libdbpp/command.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libdbpp/command.h b/libdbpp/command.h index d9bc853..f8ca7f8 100644 --- a/libdbpp/command.h +++ b/libdbpp/command.h @@ -77,12 +77,17 @@ namespace DB { else \ bindNull(i); \ } + /// @cond OPTWRAPPER(bindParamI); OPTWRAPPER(bindParamF); OPTWRAPPER(bindParamS); OPTWRAPPER(bindParamB); OPTWRAPPER(bindParamT); + /// @endcond +#undef OPTWRAPPER + /// Bind a (possibly null) c-string to parameter i. void bindParamS(unsigned int, const char * const); + /// Bind a (possibly null) c-string to parameter i. void bindParamS(unsigned int, char * const); }; typedef boost::shared_ptr<Command> CommandPtr; |