diff options
| author | Ted Ross <tross@apache.org> | 2012-04-23 13:44:11 +0000 |
|---|---|---|
| committer | Ted Ross <tross@apache.org> | 2012-04-23 13:44:11 +0000 |
| commit | 50d10cb8c9ed83232da3b08d7a6270f12c21c760 (patch) | |
| tree | 2ad4f1ee52573107de0ef91f8a0bd2dff9d4f6c3 /cpp/include | |
| parent | 9d9f870a4ee1d8b17df131f67d89e5ecc15190da (diff) | |
| download | qpid-python-50d10cb8c9ed83232da3b08d7a6270f12c21c760.tar.gz | |
QPID-3510 - Created a separate option in CommonOptions for the client configuration file.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1329236 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/include')
| -rw-r--r-- | cpp/include/qpid/Options.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/cpp/include/qpid/Options.h b/cpp/include/qpid/Options.h index 63d91c2d72..9860076195 100644 --- a/cpp/include/qpid/Options.h +++ b/cpp/include/qpid/Options.h @@ -163,10 +163,12 @@ struct Options : public po::options_description { */ struct CommonOptions : public Options { QPID_COMMON_EXTERN CommonOptions(const std::string& name=std::string(), - const std::string& configfile=std::string()); + const std::string& configfile=std::string(), + const std::string& clientConfigFile=std::string()); bool help; bool version; std::string config; + std::string clientConfig; }; |
