summaryrefslogtreecommitdiffstats
path: root/codemaker/source/cppumaker/cppuoptions.cxx
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2006-03-15 08:13:03 +0000
committerVladimir Glazounov <vg@openoffice.org>2006-03-15 08:13:03 +0000
commit32a8093d04b2cd334efad66bc5a999fea55e6dec (patch)
tree668f43811f5d7805743f3a967044b412e4092ca1 /codemaker/source/cppumaker/cppuoptions.cxx
parentINTEGRATION: CWS jsc3 (1.8.16); FILE MERGED (diff)
downloadcore-32a8093d04b2cd334efad66bc5a999fea55e6dec.tar.gz
core-32a8093d04b2cd334efad66bc5a999fea55e6dec.zip
INTEGRATION: CWS jsc3 (1.9.14); FILE MERGED
2006/03/03 11:25:53 jsc 1.9.14.2: #i60691# adapt command line help for -L and -C 2006/01/20 13:02:21 jsc 1.9.14.1: #i56247# unify include guards
Diffstat (limited to 'codemaker/source/cppumaker/cppuoptions.cxx')
-rw-r--r--codemaker/source/cppumaker/cppuoptions.cxx14
1 files changed, 10 insertions, 4 deletions
diff --git a/codemaker/source/cppumaker/cppuoptions.cxx b/codemaker/source/cppumaker/cppuoptions.cxx
index 70e62ada2197..58cb798e13ac 100644
--- a/codemaker/source/cppumaker/cppuoptions.cxx
+++ b/codemaker/source/cppumaker/cppuoptions.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: cppuoptions.cxx,v $
*
- * $Revision: 1.9 $
+ * $Revision: 1.10 $
*
- * last change: $Author: rt $ $Date: 2005-09-08 02:11:54 $
+ * last change: $Author: vg $ $Date: 2006-03-15 09:13:03 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -34,6 +34,7 @@
************************************************************************/
#include <stdio.h>
#include <string.h>
+
#include "cppuoptions.hxx"
#include "osl/thread.h"
#include "osl/process.h"
@@ -330,8 +331,13 @@ OString CppuOptions::prepareHelp()
help += " Example: 'com.sun.star.uno.XInterface' is a valid type.\n";
help += " -B<name> = name specifies the base node. All types are searched under this\n";
help += " node. Default is the root '/' of the registry files.\n";
- help += " -L = getCppuType function with a known leak.\n";
- help += " -C = getCppuType function keeps comprehensive type information.\n";
+ help += " -L = UNO type functions are generated lightweight, that means only\n";
+ help += " the name and typeclass are given and everything else is retrieved\n";
+ help += " from the type library dynamically. The default is that UNO type\n";
+ help += " functions provides enough type information for boostrapping C++.\n";
+ help += " '-L' should be the default for external components.\n";
+ help += " -C = UNO type functions are generated comprehensive that means all\n";
+ help += " necessary information is available for bridging the type in UNO.\n";
help += " -G = generate only target files which does not exists.\n";
help += " -Gc = generate only target files which content will be changed.\n";
help += " -X<file> = extra types which will not be taken into account for generation.\n";