update credits
[LibreOffice.git] / include / svl / nranges.hxx
blob497f3a1b296bb2011d9932e4ed2918adb2f304c9
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
19 #ifdef MACOSX
20 // We need an empty block in here. Otherwise, if the #ifndef INCLUDED_SVL_NRANGES_HXX
21 // line is the first line, the Mac OS X version of the gcc preprocessor will
22 // incorrectly optimize the inclusion process and will never include this file
23 // a second time
24 #endif
26 #ifndef INCLUDED_SVL_NRANGES_HXX
27 #define INCLUDED_SVL_NRANGES_HXX
29 class SfxUShortRanges
31 sal_uInt16* _pRanges; // 0-terminated array of sal_uInt16-pairs
33 public:
34 SfxUShortRanges() : _pRanges( 0 ) {}
35 SfxUShortRanges( const SfxUShortRanges &rOrig );
36 SfxUShortRanges( sal_uInt16 nWhich1, sal_uInt16 nWhich2 );
37 SfxUShortRanges( const sal_uInt16* nNumTable );
38 ~SfxUShortRanges()
39 { delete [] _pRanges; }
41 bool operator == ( const SfxUShortRanges & ) const;
42 bool operator != ( const SfxUShortRanges & rRanges ) const
43 { return !( *this == rRanges ); }
45 SfxUShortRanges& operator = ( const SfxUShortRanges & );
47 SfxUShortRanges& operator += ( const SfxUShortRanges & );
48 SfxUShortRanges& operator -= ( const SfxUShortRanges & );
49 SfxUShortRanges& operator /= ( const SfxUShortRanges & );
51 sal_uInt16 Count() const;
52 bool IsEmpty() const
53 { return !_pRanges || 0 == *_pRanges; }
55 operator const sal_uInt16* () const
56 { return _pRanges; }
59 #endif
61 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */