summaryrefslogtreecommitdiff
path: root/odb/options.ixx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2010-03-30 11:05:46 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2010-03-30 11:05:46 +0200
commitb143a4a1a028d3147b9b603e77866780b34ee828 (patch)
tree521e0d3602a08970cf477e3f139cc40f9dd01af2 /odb/options.ixx
parentcf80396f8b6147e9048c1f3bd50b3086f754d037 (diff)
Add code generator infrastructure
Diffstat (limited to 'odb/options.ixx')
-rw-r--r--odb/options.ixx42
1 files changed, 42 insertions, 0 deletions
diff --git a/odb/options.ixx b/odb/options.ixx
index 104556b..a511e0c 100644
--- a/odb/options.ixx
+++ b/odb/options.ixx
@@ -159,6 +159,48 @@ version () const
return this->version_;
}
+inline const std::string& options::
+output_dir () const
+{
+ return this->output_dir_;
+}
+
+inline const std::string& options::
+odb_file_suffix () const
+{
+ return this->odb_file_suffix_;
+}
+
+inline const std::string& options::
+hxx_suffix () const
+{
+ return this->hxx_suffix_;
+}
+
+inline const std::string& options::
+ixx_suffix () const
+{
+ return this->ixx_suffix_;
+}
+
+inline const std::string& options::
+cxx_suffix () const
+{
+ return this->cxx_suffix_;
+}
+
+inline const bool& options::
+include_with_brackets () const
+{
+ return this->include_with_brackets_;
+}
+
+inline const std::string& options::
+include_prefix () const
+{
+ return this->include_prefix_;
+}
+
inline const bool& options::
trace () const
{