summaryrefslogtreecommitdiff
path: root/cli/options.ixx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2009-11-08 21:28:46 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2009-11-08 21:28:46 +0200
commit577a38358b295379511ea8bb130ef1dcb7157c0f (patch)
treeb127b18e013c4d09ee1f878ae367f8d83dfd20f6 /cli/options.ixx
parentbe7e864610327863e0c717fdec417ac2dcdaa2e9 (diff)
Implement HTML pages generation
Diffstat (limited to 'cli/options.ixx')
-rw-r--r--cli/options.ixx30
1 files changed, 30 insertions, 0 deletions
diff --git a/cli/options.ixx b/cli/options.ixx
index 77ec790..6cf5899 100644
--- a/cli/options.ixx
+++ b/cli/options.ixx
@@ -118,6 +118,30 @@ suppress_usage () const
return suppress_usage_;
}
+inline const bool& options::
+generate_cxx () const
+{
+ return generate_cxx_;
+}
+
+inline const bool& options::
+generate_man () const
+{
+ return generate_man_;
+}
+
+inline const bool& options::
+generate_html () const
+{
+ return generate_html_;
+}
+
+inline const bool& options::
+stdout () const
+{
+ return stdout_;
+}
+
inline const std::size_t& options::
option_length () const
{
@@ -143,6 +167,12 @@ cxx_suffix () const
}
inline const std::string& options::
+html_suffix () const
+{
+ return html_suffix_;
+}
+
+inline const std::string& options::
option_prefix () const
{
return option_prefix_;