blob: 923fe6398337c516ca6d0f539a6e1faabe048e07 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<title>CLI 1.2.0 Compiler Command Line Manual</title>
<meta name="copyright" content="© 2009-2019 Code Synthesis Tools CC"/>
<meta name="keywords" content="cli,command,line,interface,compiler,c++"/>
<meta name="description" content="CLI Compiler Command Line Manual"/>
<link rel="stylesheet" type="text/css" href="default.css" />
<style type="text/css">
#synopsis {
list-style-type: none;
}
#synopsis li {
padding-top : 0.0em;
padding-bottom : 0.0em;
}
.options {
margin: 1em 0 1em 0;
}
.options dt {
margin: 1em 0 0 0;
}
.options dd {
margin: .1em 0 0 4.5em;
}
</style>
</head>
<body>
<div id="container">
<div id="content">
<h1>NAME</h1>
<p>cli - command line interface compiler for C++</p>
<h1>SYNOPSIS</h1>
<dl id="synopsis">
<dt><code><b>cli</b> [<i>options</i>] <i>file</i></code></dt>
</dl>
<h1>DESCRIPTION</h1>
<p><code><b>cli</b></code> generates C++ implementation and
documentation in various formats for a command line interface
defined in the CLI language. For an input file in the form
<code><b>name.cli</b></code> the following is generated. By
default or if the <code><b>--generate-cxx</b></code> option is
specified, the following C++ files are generated:
<code><b>name.hxx</b></code> (header file), <code><b>name.ixx</b></code>
(inline file, generated unless the <code><b>--suppress-inline</b></code>
option is specified), and <code><b>name.cxx</b></code> (source file).
If the <code><b>--generate-html</b></code> option is specified, then
the <code><b>name.html</b></code> HTML documentation file is generated.
If the <code><b>--generate-man</b></code> option is specified, then
the <code><b>name.1</b></code> man page file is generated. When
<code><b>--generate-html</b></code> or <code><b>--generate-man</b></code>
is specified, the <code><b>--stdout</b></code> option can be used to
redirect the output to STDOUT instead of a file.</p>
<h1>OPTIONS</h1>
|