summaryrefslogtreecommitdiff
path: root/cli/options.ixx
diff options
context:
space:
mode:
Diffstat (limited to 'cli/options.ixx')
-rw-r--r--cli/options.ixx24
1 files changed, 21 insertions, 3 deletions
diff --git a/cli/options.ixx b/cli/options.ixx
index ac93219..9e15c36 100644
--- a/cli/options.ixx
+++ b/cli/options.ixx
@@ -17,15 +17,33 @@ version () const
return version_;
}
+inline bool const& options::
+suppress_inline () const
+{
+ return suppress_inline_;
+}
+
inline std::string const& options::
output_dir () const
{
return output_dir_;
}
-inline bool const& options::
-suppress_inline () const
+inline std::string const& options::
+hxx_suffix () const
{
- return suppress_inline_;
+ return hxx_suffix_;
+}
+
+inline std::string const& options::
+ixx_suffix () const
+{
+ return ixx_suffix_;
+}
+
+inline std::string const& options::
+cxx_suffix () const
+{
+ return cxx_suffix_;
}