summaryrefslogtreecommitdiff
path: root/odb/options.hxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2010-03-26 16:56:05 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2010-03-26 16:56:05 +0200
commiteb11d614956030dd153c8199a9a173ffd17ddc97 (patch)
tree69b1c73b77f7e59b4e036021941b20d553a3315a /odb/options.hxx
parent161efedd3ddca75c1cd3ad7f8592653c5070614e (diff)
Disable tracing by default
Provide an option to enable it.
Diffstat (limited to 'odb/options.hxx')
-rw-r--r--odb/options.hxx4
1 files changed, 4 insertions, 0 deletions
diff --git a/odb/options.hxx b/odb/options.hxx
index 9074410..8fb43e2 100644
--- a/odb/options.hxx
+++ b/odb/options.hxx
@@ -301,6 +301,9 @@ class options
const bool&
version () const;
+ const bool&
+ trace () const;
+
const std::string&
options_file () const;
@@ -318,6 +321,7 @@ class options
public:
bool help_;
bool version_;
+ bool trace_;
std::string options_file_;
};