summaryrefslogtreecommitdiff
path: root/man/man1/slice2cpp.1
diff options
context:
space:
mode:
Diffstat (limited to 'man/man1/slice2cpp.1')
-rw-r--r--man/man1/slice2cpp.1137
1 files changed, 137 insertions, 0 deletions
diff --git a/man/man1/slice2cpp.1 b/man/man1/slice2cpp.1
new file mode 100644
index 00000000000..083e6bd4141
--- /dev/null
+++ b/man/man1/slice2cpp.1
@@ -0,0 +1,137 @@
+.TH slice2cpp 1
+
+.SH NAME
+
+slice2cpp - The Slice to C++ compiler.
+
+.SH SYNOPSIS
+
+slice2cpp [options] [files]
+
+.SH DESCRIPTION
+
+slice2cpp compiles Slice files to C++.
+
+Full documentation for slice2cpp is available online at:
+.br
+"http://doc.zeroc.com/display/Ice/slice2cpp+Command-Line+Options".
+
+.SH OPTIONS
+
+.TP
+.BR \-h ", " \-\-help\fR
+.br
+Displays help message.
+
+.TP
+.BR \-v ", " \-\-version\fR
+Displays the compiler version.
+
+.TP
+.BR \-DNAME\fR
+.br
+Defines the preprocessor symbol NAME.
+
+.TP
+.BR \-DNAME=DEF\fR
+.br
+Defines the preprocessor symbol NAME with the value DEF.
+
+.TP
+.BR \-UNAME\fR
+.br
+Undefines the preprocessor symbol NAME.
+
+.TP
+.BR \-IDIR\fR
+.br
+Add the directory DIR to the search path for #include directives.
+
+.TP
+.BR \-E\fR
+.br
+Print the preprocessor output on stdout.
+
+.TP
+.BR \-\-output-dir " " DIR\fR
+.br
+Place the generated files into directory DIR.
+
+.TP
+.BR \-d ", " \-\-debug\fR
+.br
+Print debug information showing the operation of the Slice parser.
+
+.TP
+.BR \-\-ice\fR
+.br
+Permit use of the normally reserved prefix Ice for identifiers. Use this
+option only when compiling the source code for the Ice run time.
+
+.TP
+.BR \-\-underscore\fR
+.br
+Permit use of underscores in Slice identifiers.
+
+.TP
+.BR \-\-header-ext " " EXT\fR
+.br
+Changes the file extension for the generated header files from the default h
+to EXT.
+
+.TP
+.BR \-\-source-ext " " EXT\fR
+.br
+Changes the file extension for the generated source files from the default
+cpp to EXT.
+
+.TP
+.BR \-\-add-header " " HDR[,GUARD]
+.br
+This option adds an include directive for the specified header at the
+beginning of the generated source file (preceding any other include
+directives). If GUARD is specified, the include directive is protected by the
+specified guard.
+
+.TP
+.BR \-\-include-dir " " DIR\fR
+.br
+Modifies #include directives in source files to prepend the path name of each
+header file with the directory DIR.
+
+.TP
+.BR \-\-impl\fR
+.br
+Generate sample implementation files. This option will not overwrite an
+existing file.
+
+.TP
+.BR \-\-depend\fR
+Prints makefile dependency information to standard output.
+
+.TP
+.BR \-\-dll-export " " SYMBOL\fR
+.br
+Use SYMBOL to control DLL exports or imports. This option allows you to
+selectively export or import global symbols in the generated code.
+
+.TP
+.BR \-\-checksum\fR
+.br
+Generate checksums for Slice definitions.
+
+.TP
+.BR \-\-stream\fR
+.br
+Generate streaming helper functions for Slice types.
+
+.SH SEE ALSO
+
+.BR slice2cs (1),
+.BR slice2freeze (1),
+.BR slice2freezej (1),
+.BR slice2html (1),
+.BR slice2java (1),
+.BR slice2php (1),
+.BR slice2py (1),
+.BR slice2rb (1)