From b143a4a1a028d3147b9b603e77866780b34ee828 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Tue, 30 Mar 2010 11:05:46 +0200 Subject: Add code generator infrastructure --- odb/options.hxx | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) (limited to 'odb/options.hxx') diff --git a/odb/options.hxx b/odb/options.hxx index 8fb43e2..b8a6488 100644 --- a/odb/options.hxx +++ b/odb/options.hxx @@ -301,6 +301,27 @@ class options const bool& version () const; + const std::string& + output_dir () const; + + const std::string& + odb_file_suffix () const; + + const std::string& + hxx_suffix () const; + + const std::string& + ixx_suffix () const; + + const std::string& + cxx_suffix () const; + + const bool& + include_with_brackets () const; + + const std::string& + include_prefix () const; + const bool& trace () const; @@ -321,6 +342,13 @@ class options public: bool help_; bool version_; + std::string output_dir_; + std::string odb_file_suffix_; + std::string hxx_suffix_; + std::string ixx_suffix_; + std::string cxx_suffix_; + bool include_with_brackets_; + std::string include_prefix_; bool trace_; std::string options_file_; }; -- cgit v1.1