diff options
author | Kurt Zenker <kz@openoffice.org> | 2006-11-06 13:43:16 +0000 |
---|---|---|
committer | Kurt Zenker <kz@openoffice.org> | 2006-11-06 13:43:16 +0000 |
commit | 26f9c96a192fc2f6e019414f1e835142298d9b47 (patch) | |
tree | 697be1b90314e2d043b83ecf5f7f60a9315948b3 /unodevtools | |
parent | 8b47585c6b4b67add3e7ad4f25a2b267a451c908 (diff) |
INTEGRATION: CWS jsc14 (1.5.8); FILE MERGED
2006/10/27 14:44:37 jsc 1.5.8.1: #i69760# prepare code base for add-ons
Diffstat (limited to 'unodevtools')
-rw-r--r-- | unodevtools/source/skeletonmaker/skeletoncommon.hxx | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/unodevtools/source/skeletonmaker/skeletoncommon.hxx b/unodevtools/source/skeletonmaker/skeletoncommon.hxx index 8dcda646eb31..00c821eda17f 100644 --- a/unodevtools/source/skeletonmaker/skeletoncommon.hxx +++ b/unodevtools/source/skeletonmaker/skeletoncommon.hxx @@ -4,9 +4,9 @@ * * $RCSfile: skeletoncommon.hxx,v $ * - * $Revision: 1.5 $ + * $Revision: 1.6 $ * - * last change: $Author: ihi $ $Date: 2006-08-01 16:24:36 $ + * last change: $Author: kz $ $Date: 2006-11-06 14:43:16 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -50,10 +50,17 @@ #include <fstream> #include <hash_set> -#include <hash_map> +#include <map> namespace skeletonmaker { +typedef ::std::map< ::rtl::OString, ::std::vector< ::rtl::OString >, + ::std::less< ::rtl::OString > > ProtocolCmdMap; + +typedef ::std::vector< ::std::pair< rtl::OString, + ::std::pair< rtl::OString, sal_Int16 > > > AttributeInfo; + + struct ProgramOptions { ProgramOptions(): java5(true), all(false), dump(false), license(false), shortnames(false), supportpropertysetmixin(false), @@ -77,14 +84,9 @@ struct ProgramOptions { short componenttype; rtl::OString outputpath; rtl::OString implname; + ProtocolCmdMap protocolCmdMap; }; -// typedef ::std::hash_map< ::rtl::OString, -// ::std::pair< rtl::OString, sal_Int16 >, -// rtl::OStringHash > StringPairHashMap; - -typedef ::std::vector< ::std::pair< rtl::OString, - ::std::pair< rtl::OString, sal_Int16 > > > AttributeInfo; /** print the standard OpenOffice.org license header |