dtinfo: remove register keyword
[oweals/cde.git] / cde / programs / dtinfo / dtinfo / src / Other / XmStringLocalized.hh
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 libraries 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 /*      Copyright (c) 1996 FUJITSU LIMITED      */
24 /*      All Rights Reserved                     */
25
26 #ifndef __XM_STRING_LOCALIZED_HH__
27 #define __XM_STRING_LOCALIZED_HH__
28
29 #include <Xm/Xm.h>
30
31 class XmStringLocalized
32 {
33 public:
34     XmStringLocalized(char* = NULL);
35     ~XmStringLocalized();
36
37     // conv operator
38     operator XmString () { return f_string; }
39
40     XmStringLocalized& operator= (char*);
41
42 private:
43     XmString f_string;
44 };
45
46 inline
47 XmStringLocalized::XmStringLocalized(char* string) : f_string(NULL)
48 {
49     if (string)
50         f_string = XmStringCreateLocalized(string);
51 }
52
53 inline
54 XmStringLocalized::~XmStringLocalized()
55 {
56     if (f_string) {
57         XmStringFree(f_string);
58         f_string = NULL;
59     }   
60 }
61
62 inline XmStringLocalized&
63 XmStringLocalized::operator = (char* string)
64 {
65     if (f_string) {
66         XmStringFree(f_string);
67         f_string = NULL;
68     }
69     if (string)
70         f_string = XmStringCreateLocalized(string);
71
72     return *this;
73 }
74
75 #endif