xref: /AOO41X/main/scaddins/source/analysis/analysisdefs.hxx (revision f6a6b25f1885e86d6053da7fca75a43e7c94e309)
1 /**************************************************************
2  *
3  * Licensed to the Apache Software Foundation (ASF) under one
4  * or more contributor license agreements.  See the NOTICE file
5  * distributed with this work for additional information
6  * regarding copyright ownership.  The ASF licenses this file
7  * to you under the Apache License, Version 2.0 (the
8  * "License"); you may not use this file except in compliance
9  * with the License.  You may obtain a copy of the License at
10  *
11  *   http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing,
14  * software distributed under the License is distributed on an
15  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16  * KIND, either express or implied.  See the License for the
17  * specific language governing permissions and limitations
18  * under the License.
19  *
20  *************************************************************/
21 
22 
23 
24 #ifndef ANALYSISDEFS_HXX
25 #define ANALYSISDEFS_HXX
26 
27 #define CSS                 ::com::sun::star
28 #define XPROPSET            CSS::beans::XPropertySet
29 #define REF(c)              CSS::uno::Reference< c >
30 #define constREFXPS         const REF(XPROPSET)
31 #define SEQ(c)              CSS::uno::Sequence< c >
32 #define SEQSEQ(c)           CSS::uno::Sequence< CSS::uno::Sequence< c > >
33 #define SEQofLocName        SEQ( CSS::sheet::LocalizedName )
34 #define ANY                 CSS::uno::Any
35 #define SEQ_ANY             SEQ(ANY)
36 #define STRING              ::rtl::OUString
37 #define STRFROMASCII(s)     STRING::createFromAscii( s )
38 #define STRFROMANSI(s)      STRING( s, strlen( s ), RTL_TEXTENCODING_MS_1252 )
39 #define THROWDEF_RTE        throw(CSS::uno::RuntimeException)
40 #define THROW_RTE           throw CSS::uno::RuntimeException()
41 #define THROWDEF_RTE_IAE    throw(CSS::uno::RuntimeException,CSS::lang::IllegalArgumentException)
42 #define THROW_IAE           throw CSS::lang::IllegalArgumentException()
43 #define THROWDEF_RTE_IAE_NCE    throw(CSS::uno::RuntimeException,CSS::lang::IllegalArgumentException,CSS::sheet::NoConvergenceException)
44 #define THROW_NCE           throw CSS::sheet::NoConvergenceException()
45 
46 #define CHK_Freq            ( nFreq != 1 && nFreq != 2 && nFreq != 4 )
47 #define CHK_FINITE(d)       if( !::rtl::math::isFinite( d ) ) THROW_IAE
48 #define RETURN_FINITE(d)    if( ::rtl::math::isFinite( d ) ) return d; else THROW_IAE
49 
50 #endif
51 
52