summaryrefslogtreecommitdiff
path: root/odb/options.hxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2010-05-07 11:06:00 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2010-05-07 11:06:00 +0200
commit2a758e9286d05a90edf71791bff493829085b098 (patch)
treef82cdbda5fec672866dbc6f3897604d30c5a29c9 /odb/options.hxx
parent0359a07a2e26bdd5f42e8a9cd51fc7cbbfc177a0 (diff)
Handle --version and --help
Also add the --proprietary license option.
Diffstat (limited to 'odb/options.hxx')
-rw-r--r--odb/options.hxx8
1 files changed, 6 insertions, 2 deletions
diff --git a/odb/options.hxx b/odb/options.hxx
index 92fc595..cbd112e 100644
--- a/odb/options.hxx
+++ b/odb/options.hxx
@@ -323,11 +323,14 @@ class options
include_prefix () const;
const bool&
- trace () const;
+ proprietary_license () const;
const std::string&
options_file () const;
+ const bool&
+ trace () const;
+
// Print usage information.
//
static void
@@ -349,8 +352,9 @@ class options
std::string cxx_suffix_;
bool include_with_brackets_;
std::string include_prefix_;
- bool trace_;
+ bool proprietary_license_;
std::string options_file_;
+ bool trace_;
};
#include <odb/options.ixx>