1*2037b4deSAndrew Rist /**************************************************************
2cdf0e10cSrcweir  *
3*2037b4deSAndrew Rist  * Licensed to the Apache Software Foundation (ASF) under one
4*2037b4deSAndrew Rist  * or more contributor license agreements.  See the NOTICE file
5*2037b4deSAndrew Rist  * distributed with this work for additional information
6*2037b4deSAndrew Rist  * regarding copyright ownership.  The ASF licenses this file
7*2037b4deSAndrew Rist  * to you under the Apache License, Version 2.0 (the
8*2037b4deSAndrew Rist  * "License"); you may not use this file except in compliance
9*2037b4deSAndrew Rist  * with the License.  You may obtain a copy of the License at
10*2037b4deSAndrew Rist  *
11*2037b4deSAndrew Rist  *   http://www.apache.org/licenses/LICENSE-2.0
12*2037b4deSAndrew Rist  *
13*2037b4deSAndrew Rist  * Unless required by applicable law or agreed to in writing,
14*2037b4deSAndrew Rist  * software distributed under the License is distributed on an
15*2037b4deSAndrew Rist  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*2037b4deSAndrew Rist  * KIND, either express or implied.  See the License for the
17*2037b4deSAndrew Rist  * specific language governing permissions and limitations
18*2037b4deSAndrew Rist  * under the License.
19*2037b4deSAndrew Rist  *
20*2037b4deSAndrew Rist  *************************************************************/
21*2037b4deSAndrew Rist 
22*2037b4deSAndrew Rist 
23cdf0e10cSrcweir 
24cdf0e10cSrcweir #ifndef INCLUDED_CODEMAKER_CODEMAKER_HXX
25cdf0e10cSrcweir #define INCLUDED_CODEMAKER_CODEMAKER_HXX
26cdf0e10cSrcweir 
27cdf0e10cSrcweir #include "sal/config.h"
28cdf0e10cSrcweir #include "codemaker/unotype.hxx"
29cdf0e10cSrcweir #include "registry/types.h"
30cdf0e10cSrcweir #include "sal/types.h"
31cdf0e10cSrcweir 
32cdf0e10cSrcweir #include <vector>
33cdf0e10cSrcweir 
34cdf0e10cSrcweir namespace rtl {
35cdf0e10cSrcweir     class OString;
36cdf0e10cSrcweir     class OUString;
37cdf0e10cSrcweir }
38cdf0e10cSrcweir class TypeManager;
39cdf0e10cSrcweir 
40cdf0e10cSrcweir namespace codemaker {
41cdf0e10cSrcweir 
42cdf0e10cSrcweir rtl::OString convertString(rtl::OUString const & string);
43cdf0e10cSrcweir 
44cdf0e10cSrcweir codemaker::UnoType::Sort decomposeAndResolve(
45cdf0e10cSrcweir     TypeManager const & manager, rtl::OString const & type,
46cdf0e10cSrcweir     bool resolveTypedefs, bool allowVoid, bool allowExtraEntities,
47cdf0e10cSrcweir     RTTypeClass * typeClass, rtl::OString * name, sal_Int32 * rank,
48cdf0e10cSrcweir     std::vector< rtl::OString > * arguments);
49cdf0e10cSrcweir 
50cdf0e10cSrcweir }
51cdf0e10cSrcweir 
52cdf0e10cSrcweir #endif // INCLUDED_CODEMAKER_CODEMAKER_HXX
53