1d9733cde393571c73a50c369f40fa16c04a4119
[oweals/cde.git] / cde / programs / nsgmls / XcharMap.h
1 /*
2  * CDE - Common Desktop Environment
3  *
4  * Copyright (c) 1993-2012, The Open Group. All rights reserved.
5  *
6  * These libraries and programs are free software; you can
7  * redistribute them and/or modify them under the terms of the GNU
8  * Lesser General Public License as published by the Free Software
9  * Foundation; either version 2 of the License, or (at your option)
10  * any later version.
11  *
12  * These libraries and programs are distributed in the hope that
13  * they will be useful, but WITHOUT ANY WARRANTY; without even the
14  * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15  * PURPOSE. See the GNU Lesser General Public License for more
16  * details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with these librararies and programs; if not, write
20  * to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
21  * Floor, Boston, MA 02110-1301 USA
22  */
23 /* $XConsortium: XcharMap.h /main/1 1996/07/29 17:08:09 cde-hp $ */
24 // Copyright (c) 1994 James Clark
25 // See the file COPYING for copying permission.
26
27 #ifndef XcharMap_INCLUDED
28 #define XcharMap_INCLUDED 1
29
30 #include "types.h"
31 #include "Resource.h"
32 #include "Ptr.h"
33 #include "constant.h"
34
35 #ifdef SP_NAMESPACE
36 namespace SP_NAMESPACE {
37 #endif
38
39 template<class T>
40 class SharedXcharMap : public Resource {
41 public:
42   SharedXcharMap();
43   SharedXcharMap(T defaultValue);
44   T *ptr() { return v + 1; }
45 private:
46   T v[2 + charMax];
47 };
48
49 template<class T>
50 class XcharMap {
51 public:
52   XcharMap();
53   XcharMap(T defaultValue);
54   T operator[](Xchar c) const { return ptr_[c]; }
55   void setRange(Char min, Char max, T val);
56   void setChar(Char c, T val) { ptr_[c] = val; }
57   void setEe(T val) { ptr_[-1] = val; }
58   void clear() { ptr_ = 0; sharedMap_.clear(); }
59 private:
60   T *ptr_;
61   Ptr<SharedXcharMap<T> > sharedMap_;
62 };
63
64 #ifdef SP_NAMESPACE
65 }
66 #endif
67
68 #endif /* not XcharMap_INCLUDED */
69
70 #ifdef SP_DEFINE_TEMPLATES
71 #include "XcharMap.C"
72 #endif