1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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 .
20 #ifndef UDM_LUXENUM_HXX
21 #define UDM_LUXENUM_HXX
36 typedef std::map
< intt
, String
> EnumValueMap
;
40 class Enum
// : public Template_Base
44 typedef Enum
< DIFF
> self
;
49 const char * i_sText
)
50 : nValue(i_nValue
) { Values_()[nValue
] = i_sText
;
51 // Sequence_().insert(
52 // std::lower_bound( Sequence_().begin(), Sequence_().end(), i_nValue ),
57 : nValue(i_nValue
) { ; }
60 : nValue(i_nValue
) { if ( NOT
CheckIntt(i_nValue
) ) { csv_assert(false); } }
62 const self
& i_rEnum
)
63 : nValue(i_rEnum
.nValue
) {;}
67 { nValue
= i_nValue
; return *this; }
70 { if ( CheckIntt(i_nValue
) ) {nValue
= DIFF(i_nValue
);}
71 else {csv_assert(false);} return *this; }
73 const self
& i_rEnum
)
74 { nValue
= i_rEnum
.nValue
; return *this; }
75 operator DIFF() const { return DIFF(nValue
); }
77 DIFF
operator()() const { return nValue
; }
78 const String
& Text() const { return Values_()[nValue
]; }
85 { return Values_().find(i_nNumber
) != Values_().end(); }
96 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */