xref: /trunk/main/svl/source/items/rngitem.cxx (revision 40df464e)
1*40df464eSAndrew Rist /**************************************************************
2cdf0e10cSrcweir  *
3*40df464eSAndrew Rist  * Licensed to the Apache Software Foundation (ASF) under one
4*40df464eSAndrew Rist  * or more contributor license agreements.  See the NOTICE file
5*40df464eSAndrew Rist  * distributed with this work for additional information
6*40df464eSAndrew Rist  * regarding copyright ownership.  The ASF licenses this file
7*40df464eSAndrew Rist  * to you under the Apache License, Version 2.0 (the
8*40df464eSAndrew Rist  * "License"); you may not use this file except in compliance
9*40df464eSAndrew Rist  * with the License.  You may obtain a copy of the License at
10*40df464eSAndrew Rist  *
11*40df464eSAndrew Rist  *   http://www.apache.org/licenses/LICENSE-2.0
12*40df464eSAndrew Rist  *
13*40df464eSAndrew Rist  * Unless required by applicable law or agreed to in writing,
14*40df464eSAndrew Rist  * software distributed under the License is distributed on an
15*40df464eSAndrew Rist  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*40df464eSAndrew Rist  * KIND, either express or implied.  See the License for the
17*40df464eSAndrew Rist  * specific language governing permissions and limitations
18*40df464eSAndrew Rist  * under the License.
19*40df464eSAndrew Rist  *
20*40df464eSAndrew Rist  *************************************************************/
21*40df464eSAndrew Rist 
22*40df464eSAndrew Rist 
23cdf0e10cSrcweir 
24cdf0e10cSrcweir // MARKER(update_precomp.py): autogen include statement, do not remove
25cdf0e10cSrcweir #include "precompiled_svl.hxx"
26cdf0e10cSrcweir #include <tools/stream.hxx>
27cdf0e10cSrcweir 
28cdf0e10cSrcweir #ifndef NUMTYPE
29cdf0e10cSrcweir 
30cdf0e10cSrcweir #define NUMTYPE sal_uInt16
31cdf0e10cSrcweir #define SfxXRangeItem SfxRangeItem
32cdf0e10cSrcweir #define SfxXRangesItem SfxUShortRangesItem
33cdf0e10cSrcweir #include <svl/rngitem.hxx>
34cdf0e10cSrcweir #include "rngitem_inc.cxx"
35cdf0e10cSrcweir 
36cdf0e10cSrcweir #define NUMTYPE	sal_uInt32
37cdf0e10cSrcweir #define SfxXRangeItem SfxULongRangeItem
38cdf0e10cSrcweir #define SfxXRangesItem SfxULongRangesItem
39cdf0e10cSrcweir #include <svl/rngitem.hxx>
40cdf0e10cSrcweir #include "rngitem_inc.cxx"
41cdf0e10cSrcweir 
42cdf0e10cSrcweir #else
43cdf0e10cSrcweir 
44cdf0e10cSrcweir // We leave this condition just in case NUMTYPE has been defined externally to this
45cdf0e10cSrcweir // file and we are supposed to define the SfxXRangeItem based on that.
46cdf0e10cSrcweir 
47cdf0e10cSrcweir #include "rngitem_inc.cxx"
48cdf0e10cSrcweir 
49cdf0e10cSrcweir #endif
50cdf0e10cSrcweir 
51