summaryrefslogtreecommitdiff
path: root/xsd/cxx/options.cli
diff options
context:
space:
mode:
Diffstat (limited to 'xsd/cxx/options.cli')
-rw-r--r--xsd/cxx/options.cli11
1 files changed, 11 insertions, 0 deletions
diff --git a/xsd/cxx/options.cli b/xsd/cxx/options.cli
index e1b48e9..2203188 100644
--- a/xsd/cxx/options.cli
+++ b/xsd/cxx/options.cli
@@ -7,12 +7,23 @@ include <cstddef>; // std::size_t
include <types.hxx>; // NarrowString, NarrowStrings
+include <cxx/option-types.hxx>;
+
include <options.cli>;
namespace CXX
{
class options: ::options = 0
{
+ // Language.
+ //
+ cxx_version --std = cxx_version::cxx98
+ {
+ "<version>",
+ "Specify the C++ standard that the generated code should conform to.
+ Valid values are \cb{c++98} (default) and \cb{c++11}."
+ };
+
// Character type and encoding.
//
NarrowString --char-type = "char"