diff options
| author | Boris Kolpackov <boris@codesynthesis.com> | 2009-10-04 10:04:34 +0200 |
|---|---|---|
| committer | Boris Kolpackov <boris@codesynthesis.com> | 2009-10-04 10:04:34 +0200 |
| commit | b0cbea713f15e511630d2626c4694f119206dc94 (patch) | |
| tree | 340c55eb7c946034387839297c62a576123afab3 /cli/options.ixx | |
| parent | 9f995b41e72b25c0c7ffe8e2568e166d86f27bcc (diff) | |
| download | cli-b0cbea713f15e511630d2626c4694f119206dc94.tar.gz cli-b0cbea713f15e511630d2626c4694f119206dc94.tar.xz cli-b0cbea713f15e511630d2626c4694f119206dc94.zip | |
Add options for various include settings
--include-with-brackets
--include-prefix
--guard-prefix
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 9e15c36..11a1776 100644 --- a/cli/options.ixx +++ b/cli/options.ixx @@ -47,3 +47,21 @@ cxx_suffix () const return cxx_suffix_; } +inline bool const& options:: +include_with_brackets () const +{ + return include_with_brackets_; +} + +inline std::string const& options:: +include_prefix () const +{ + return include_prefix_; +} + +inline std::string const& options:: +guard_prefix () const +{ + return guard_prefix_; +} + |
