xref: /AOO42X/main/autodoc/source/inc/luxenum.hxx (revision 9bce9b0d387299c68bd81d539e1478357a103de5)
1*1c78a5d6SAndrew Rist /**************************************************************
2cdf0e10cSrcweir  *
3*1c78a5d6SAndrew Rist  * Licensed to the Apache Software Foundation (ASF) under one
4*1c78a5d6SAndrew Rist  * or more contributor license agreements.  See the NOTICE file
5*1c78a5d6SAndrew Rist  * distributed with this work for additional information
6*1c78a5d6SAndrew Rist  * regarding copyright ownership.  The ASF licenses this file
7*1c78a5d6SAndrew Rist  * to you under the Apache License, Version 2.0 (the
8*1c78a5d6SAndrew Rist  * "License"); you may not use this file except in compliance
9*1c78a5d6SAndrew Rist  * with the License.  You may obtain a copy of the License at
10cdf0e10cSrcweir  *
11*1c78a5d6SAndrew Rist  *   http://www.apache.org/licenses/LICENSE-2.0
12cdf0e10cSrcweir  *
13*1c78a5d6SAndrew Rist  * Unless required by applicable law or agreed to in writing,
14*1c78a5d6SAndrew Rist  * software distributed under the License is distributed on an
15*1c78a5d6SAndrew Rist  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*1c78a5d6SAndrew Rist  * KIND, either express or implied.  See the License for the
17*1c78a5d6SAndrew Rist  * specific language governing permissions and limitations
18*1c78a5d6SAndrew Rist  * under the License.
19cdf0e10cSrcweir  *
20*1c78a5d6SAndrew Rist  *************************************************************/
21*1c78a5d6SAndrew Rist 
22*1c78a5d6SAndrew Rist 
23cdf0e10cSrcweir 
24cdf0e10cSrcweir #ifndef UDM_LUXENUM_HXX
25cdf0e10cSrcweir #define UDM_LUXENUM_HXX
26cdf0e10cSrcweir 
27cdf0e10cSrcweir 
28cdf0e10cSrcweir 
29cdf0e10cSrcweir // USED SERVICES
30cdf0e10cSrcweir     // BASE CLASSES
31cdf0e10cSrcweir     // COMPONENTS
32cdf0e10cSrcweir     // PARAMETERS
33cdf0e10cSrcweir #include <map>
34cdf0e10cSrcweir #include <algorithm>
35cdf0e10cSrcweir 
36cdf0e10cSrcweir 
37cdf0e10cSrcweir namespace lux
38cdf0e10cSrcweir {
39cdf0e10cSrcweir 
40cdf0e10cSrcweir typedef std::map< intt, String  > EnumValueMap;
41cdf0e10cSrcweir 
42cdf0e10cSrcweir 
43cdf0e10cSrcweir template <class DIFF>
44cdf0e10cSrcweir class Enum // : public Template_Base
45cdf0e10cSrcweir {
46cdf0e10cSrcweir   public:
47cdf0e10cSrcweir     // TYPES
48cdf0e10cSrcweir     typedef Enum< DIFF >    self;
49cdf0e10cSrcweir 
50cdf0e10cSrcweir     // LIFECYCLE
Enum(DIFF i_nValue,const char * i_sText)51cdf0e10cSrcweir                         Enum(
52cdf0e10cSrcweir                             DIFF                i_nValue,
53cdf0e10cSrcweir                             const char *        i_sText )
54cdf0e10cSrcweir                                                 :   nValue(i_nValue) { Values_()[nValue] = i_sText;
55cdf0e10cSrcweir                                                                        // Sequence_().insert(
56cdf0e10cSrcweir                                                                        //       std::lower_bound( Sequence_().begin(), Sequence_().end(), i_nValue ),
57cdf0e10cSrcweir                                                                        //       i_nValue );
58cdf0e10cSrcweir                                                                      }
Enum(DIFF i_nValue)59cdf0e10cSrcweir                         Enum(
60cdf0e10cSrcweir                             DIFF                i_nValue )
61cdf0e10cSrcweir                                                 :   nValue(i_nValue) { ; }
Enum(intt i_nValue=0)62cdf0e10cSrcweir                         Enum(
63cdf0e10cSrcweir                             intt                i_nValue = 0 )
64cdf0e10cSrcweir                                                 :   nValue(i_nValue) { if ( NOT CheckIntt(i_nValue) ) { csv_assert(false); } }
Enum(const self & i_rEnum)65cdf0e10cSrcweir                         Enum(
66cdf0e10cSrcweir                             const self &        i_rEnum )
67cdf0e10cSrcweir                                                 :   nValue(i_rEnum.nValue) {;}
68cdf0e10cSrcweir 
operator =(DIFF i_nValue)69cdf0e10cSrcweir     self &              operator=(
70cdf0e10cSrcweir                             DIFF                i_nValue )
71cdf0e10cSrcweir                                                 { nValue = i_nValue; return *this; }
operator =(intt i_nValue)72cdf0e10cSrcweir     self &              operator=(
73cdf0e10cSrcweir                             intt                i_nValue )
74cdf0e10cSrcweir                                                 { if ( CheckIntt(i_nValue) ) {nValue = DIFF(i_nValue);}
75cdf0e10cSrcweir                                                   else {csv_assert(false);} return *this; }
operator =(const self & i_rEnum)76cdf0e10cSrcweir     self &              operator=(
77cdf0e10cSrcweir                             const self &        i_rEnum )
78cdf0e10cSrcweir                                                 { nValue = i_rEnum.nValue; return *this; }
operator DIFF() const79cdf0e10cSrcweir                         operator DIFF() const   { return DIFF(nValue); }
80cdf0e10cSrcweir 
operator ()() const81cdf0e10cSrcweir     DIFF                operator()() const      { return nValue; }
Text() const82cdf0e10cSrcweir     const String  &     Text() const            { return Values_()[nValue]; }
83cdf0e10cSrcweir 
84cdf0e10cSrcweir   private:
85cdf0e10cSrcweir     static EnumValueMap &
86cdf0e10cSrcweir                         Values_();
CheckIntt(intt i_nNumber)87cdf0e10cSrcweir     bool                CheckIntt(
88cdf0e10cSrcweir                             intt                i_nNumber )
89cdf0e10cSrcweir                                                 { return Values_().find(i_nNumber) != Values_().end(); }
90cdf0e10cSrcweir     // DATA
91cdf0e10cSrcweir     intt                nValue;
92cdf0e10cSrcweir };
93cdf0e10cSrcweir 
94cdf0e10cSrcweir 
95cdf0e10cSrcweir 
96cdf0e10cSrcweir 
97cdf0e10cSrcweir }   // namespace lux
98cdf0e10cSrcweir #endif
99