diff options
| author | Boris Kolpackov <boris@codesynthesis.com> | 2016-02-01 12:08:06 +0200 |
|---|---|---|
| committer | Boris Kolpackov <boris@codesynthesis.com> | 2016-02-01 12:08:06 +0200 |
| commit | a22e3dc68dd88eb047bfd9716e5cb780c95a3cea (patch) | |
| tree | e991ee32b6155ed262cbcb32b6202907bf4163b1 /cli/options.ixx | |
| parent | de673d0b39bff8d8da3d3818de7c79bf0143eb2c (diff) | |
| download | cli-a22e3dc68dd88eb047bfd9716e5cb780c95a3cea.tar.gz cli-a22e3dc68dd88eb047bfd9716e5cb780c95a3cea.tar.xz cli-a22e3dc68dd88eb047bfd9716e5cb780c95a3cea.zip | |
Add support for link transformation (--link-regex)
Diffstat (limited to 'cli/options.ixx')
| -rw-r--r-- | cli/options.ixx | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/cli/options.ixx b/cli/options.ixx index 618d15f..95c1038 100644 --- a/cli/options.ixx +++ b/cli/options.ixx @@ -452,6 +452,24 @@ docvar_specified () const } inline const std::vector<std::string>& options:: +link_regex () const +{ + return this->link_regex_; +} + +inline bool options:: +link_regex_specified () const +{ + return this->link_regex_specified_; +} + +inline const bool& options:: +link_regex_trace () const +{ + return this->link_regex_trace_; +} + +inline const std::vector<std::string>& options:: hxx_prologue () const { return this->hxx_prologue_; |
