1*83f558e8SAndrew Rist /**************************************************************
2cdf0e10cSrcweir  *
3*83f558e8SAndrew Rist  * Licensed to the Apache Software Foundation (ASF) under one
4*83f558e8SAndrew Rist  * or more contributor license agreements.  See the NOTICE file
5*83f558e8SAndrew Rist  * distributed with this work for additional information
6*83f558e8SAndrew Rist  * regarding copyright ownership.  The ASF licenses this file
7*83f558e8SAndrew Rist  * to you under the Apache License, Version 2.0 (the
8*83f558e8SAndrew Rist  * "License"); you may not use this file except in compliance
9*83f558e8SAndrew Rist  * with the License.  You may obtain a copy of the License at
10*83f558e8SAndrew Rist  *
11*83f558e8SAndrew Rist  *   http://www.apache.org/licenses/LICENSE-2.0
12*83f558e8SAndrew Rist  *
13*83f558e8SAndrew Rist  * Unless required by applicable law or agreed to in writing,
14*83f558e8SAndrew Rist  * software distributed under the License is distributed on an
15*83f558e8SAndrew Rist  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*83f558e8SAndrew Rist  * KIND, either express or implied.  See the License for the
17*83f558e8SAndrew Rist  * specific language governing permissions and limitations
18*83f558e8SAndrew Rist  * under the License.
19*83f558e8SAndrew Rist  *
20*83f558e8SAndrew Rist  *************************************************************/
21*83f558e8SAndrew Rist 
22*83f558e8SAndrew Rist 
23cdf0e10cSrcweir 
24cdf0e10cSrcweir 
25cdf0e10cSrcweir #ifndef _RESOURCEPROVIDER_HXX_
26cdf0e10cSrcweir #define _RESOURCEPROVIDER_HXX_
27cdf0e10cSrcweir 
28cdf0e10cSrcweir //------------------------------------------------------------------------
29cdf0e10cSrcweir // includes
30cdf0e10cSrcweir //------------------------------------------------------------------------
31cdf0e10cSrcweir 
32cdf0e10cSrcweir #include <sal/types.h>
33cdf0e10cSrcweir 
34cdf0e10cSrcweir #ifndef _RTL_USTRING_HXX_
35cdf0e10cSrcweir #include <rtl/ustring>
36cdf0e10cSrcweir #endif
37cdf0e10cSrcweir 
38cdf0e10cSrcweir //------------------------------------------------------------------------
39cdf0e10cSrcweir // deklarations
40cdf0e10cSrcweir //------------------------------------------------------------------------
41cdf0e10cSrcweir 
42cdf0e10cSrcweir class CResourceProvider_Impl;
43cdf0e10cSrcweir 
44cdf0e10cSrcweir class CResourceProvider
45cdf0e10cSrcweir {
46cdf0e10cSrcweir public:
47cdf0e10cSrcweir     CResourceProvider( );
48cdf0e10cSrcweir     ~CResourceProvider( );
49cdf0e10cSrcweir 
50cdf0e10cSrcweir     rtl::OUString getResString( sal_Int32 aId );
51cdf0e10cSrcweir 
52cdf0e10cSrcweir private:
53cdf0e10cSrcweir     CResourceProvider_Impl* m_pImpl;
54cdf0e10cSrcweir };
55cdf0e10cSrcweir 
56cdf0e10cSrcweir #endif
57