summaryrefslogtreecommitdiff
path: root/cli/options.ixx
diff options
context:
space:
mode:
Diffstat (limited to 'cli/options.ixx')
-rw-r--r--cli/options.ixx66
1 files changed, 36 insertions, 30 deletions
diff --git a/cli/options.ixx b/cli/options.ixx
index c2b9a80..b146a60 100644
--- a/cli/options.ixx
+++ b/cli/options.ixx
@@ -264,12 +264,42 @@ suppress_inline () const
}
inline const std::string& options::
+cli_namespace () const
+{
+ return this->cli_namespace_;
+}
+
+inline const std::string& options::
ostream_type () const
{
return this->ostream_type_;
}
inline const bool& options::
+generate_cxx () const
+{
+ return this->generate_cxx_;
+}
+
+inline const bool& options::
+generate_man () const
+{
+ return this->generate_man_;
+}
+
+inline const bool& options::
+generate_html () const
+{
+ return this->generate_html_;
+}
+
+inline const bool& options::
+stdout_ () const
+{
+ return this->stdout__;
+}
+
+inline const bool& options::
suppress_undocumented () const
{
return this->suppress_undocumented_;
@@ -305,28 +335,16 @@ exclude_base () const
return this->exclude_base_;
}
-inline const std::string& options::
-cli_namespace () const
-{
- return this->cli_namespace_;
-}
-
-inline const bool& options::
-generate_cxx () const
-{
- return this->generate_cxx_;
-}
-
-inline const bool& options::
-generate_man () const
+inline const std::vector<std::string>& options::
+class_ () const
{
- return this->generate_man_;
+ return this->class__;
}
-inline const bool& options::
-generate_html () const
+inline const std::map<std::string, std::string>& options::
+docvar () const
{
- return this->generate_html_;
+ return this->docvar_;
}
inline const std::vector<std::string>& options::
@@ -449,18 +467,6 @@ html_epilogue_file () const
return this->html_epilogue_file_;
}
-inline const std::vector<std::string>& options::
-class_ () const
-{
- return this->class__;
-}
-
-inline const bool& options::
-stdout_ () const
-{
- return this->stdout__;
-}
-
inline const std::string& options::
hxx_suffix () const
{