summaryrefslogtreecommitdiff
path: root/cli/options.hxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2015-11-24 14:30:02 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2015-11-24 14:30:02 +0200
commitb8b194ea5fa6ba7a3aac7ff212eb62ccfb942dbf (patch)
tree5d31eafd8e0fcfe497bd8fd022370966f0a26f76 /cli/options.hxx
parent469605e872aeca50c7556708de5d50d7e7935d83 (diff)
Implement --class-doc option
Diffstat (limited to 'cli/options.hxx')
-rw-r--r--cli/options.hxx8
1 files changed, 8 insertions, 0 deletions
diff --git a/cli/options.hxx b/cli/options.hxx
index 0612882..268e0fd 100644
--- a/cli/options.hxx
+++ b/cli/options.hxx
@@ -484,6 +484,12 @@ class options
const bool&
include_base_last () const;
+ const std::map<std::string, std::string>&
+ class_doc () const;
+
+ bool
+ class_doc_specified () const;
+
const std::vector<std::string>&
class_ () const;
@@ -735,6 +741,8 @@ class options
bool ansi_color_;
bool exclude_base_;
bool include_base_last_;
+ std::map<std::string, std::string> class_doc_;
+ bool class_doc_specified_;
std::vector<std::string> class__;
bool class__specified_;
std::map<std::string, std::string> docvar_;