xref: /aoo42x/main/forms/source/component/findpos.hxx (revision bd656f79)
12d785d7eSAndrew Rist /**************************************************************
2cdf0e10cSrcweir  *
32d785d7eSAndrew Rist  * Licensed to the Apache Software Foundation (ASF) under one
42d785d7eSAndrew Rist  * or more contributor license agreements.  See the NOTICE file
52d785d7eSAndrew Rist  * distributed with this work for additional information
62d785d7eSAndrew Rist  * regarding copyright ownership.  The ASF licenses this file
72d785d7eSAndrew Rist  * to you under the Apache License, Version 2.0 (the
82d785d7eSAndrew Rist  * "License"); you may not use this file except in compliance
92d785d7eSAndrew Rist  * with the License.  You may obtain a copy of the License at
102d785d7eSAndrew Rist  *
112d785d7eSAndrew Rist  *   http://www.apache.org/licenses/LICENSE-2.0
122d785d7eSAndrew Rist  *
132d785d7eSAndrew Rist  * Unless required by applicable law or agreed to in writing,
142d785d7eSAndrew Rist  * software distributed under the License is distributed on an
152d785d7eSAndrew Rist  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
162d785d7eSAndrew Rist  * KIND, either express or implied.  See the License for the
172d785d7eSAndrew Rist  * specific language governing permissions and limitations
182d785d7eSAndrew Rist  * under the License.
192d785d7eSAndrew Rist  *
202d785d7eSAndrew Rist  *************************************************************/
212d785d7eSAndrew Rist 
222d785d7eSAndrew Rist 
23cdf0e10cSrcweir 
24cdf0e10cSrcweir #ifndef INCLUDED_FORMS_SOURCE_COMPONENT_FINDPOS_HXX
25cdf0e10cSrcweir #define INCLUDED_FORMS_SOURCE_COMPONENT_FINDPOS_HXX
26cdf0e10cSrcweir 
27cdf0e10cSrcweir #include "sal/config.h"
28cdf0e10cSrcweir #include "com/sun/star/uno/Sequence.hxx"
29cdf0e10cSrcweir #include "sal/types.h"
30cdf0e10cSrcweir 
31cdf0e10cSrcweir namespace rtl { class OUString; }
32cdf0e10cSrcweir 
33*bd656f79SPedro Giffuni namespace forms_detail {
34cdf0e10cSrcweir 
35cdf0e10cSrcweir sal_Int32 findPos(
36cdf0e10cSrcweir     const ::rtl::OUString& aStr,
37cdf0e10cSrcweir     const ::com::sun::star::uno::Sequence< ::rtl::OUString >& rList);
38cdf0e10cSrcweir 
39cdf0e10cSrcweir }
40cdf0e10cSrcweir 
41cdf0e10cSrcweir #endif
42