summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2009-10-28 14:21:38 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2009-10-28 14:21:38 +0200
commit7f089045bce33cf309f807d1cee97a8beb7bb859 (patch)
treee2a9a2a6596466be55427d742cca69eaafdf0df1 /examples
parent2d2049d1f6482b1684bcd3f912fbeed99700ab89 (diff)
Documentation fixes
Diffstat (limited to 'examples')
-rw-r--r--examples/features/README11
-rw-r--r--examples/hello/README8
2 files changed, 9 insertions, 10 deletions
diff --git a/examples/features/README b/examples/features/README
index fc30a53..9416320 100644
--- a/examples/features/README
+++ b/examples/features/README
@@ -3,19 +3,18 @@ This example shows how to use various features of the CLI language.
The example consists of the following files:
options.cli
- Options class definition in the CLI language.
+ Command line interface description in the CLI language.
options.hxx
options.ixx
options.cxx
- Options class implementation in C++. These files are generated by the CLI
- compiler from hello.cli using the following command line:
+ Command line interface implementation in C++. These files are generated
+ by the CLI compiler from hello.cli using the following command line:
cli options.cli
driver.cxx
Driver for the example. It first instantiates the option class which parses
- the command line. The driver then examines and prints the options values.
+ the command line. The driver then examines and prints the option values.
-To run the example you can try various command lines suggested in the
-options.cli file.
+To run the example you can try various command lines suggested in options.cli.
diff --git a/examples/hello/README b/examples/hello/README
index a1fe976..dd14b01 100644
--- a/examples/hello/README
+++ b/examples/hello/README
@@ -4,20 +4,20 @@ command line interface using CLI.
The example consists of the following files:
hello.cli
- Options class definition in the CLI language.
+ Command line interface description in the CLI language.
hello.hxx
hello.ixx
hello.cxx
- Options class implementation in C++. These files are generated by the CLI
- compiler from hello.cli using the following command line:
+ Command line interface implementation in C++. These files are generated
+ by the CLI compiler from hello.cli using the following command line:
cli hello.cli
driver.cxx
Driver for the example. It first instantiates the option class which parses
the command line. The driver then examines the options and prints the
- greeting string for each name passed as argument.
+ greeting string for each name passed as an argument.
To run the example you can try the following command lines: