dtinfo: remove register keyword
[oweals/cde.git] / cde / programs / dtinfo / dtinfo / src / Basic / Atomizer.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 /*
24  * $XConsortium: Atomizer.hh /main/3 1996/06/11 16:17:39 cde-hal $
25  *
26  * Copyright (c) 1992 HaL Computer Systems, Inc.  All rights reserved.
27  * UNPUBLISHED -- rights reserved under the Copyright Laws of the United
28  * States.  Use of a copyright notice is precautionary only and does not
29  * imply publication or disclosure.
30  * 
31  * This software contains confidential information and trade secrets of HaL
32  * Computer Systems, Inc.  Use, disclosure, or reproduction is prohibited
33  * without the prior express written permission of HaL Computer Systems, Inc.
34  * 
35  *                         RESTRICTED RIGHTS LEGEND
36  * Use, duplication, or disclosure by the Government is subject to
37  * restrictions as set forth in subparagraph (c)(l)(ii) of the Rights in
38  * Technical Data and Computer Software clause at DFARS 252.227-7013.
39  *                        HaL Computer Systems, Inc. 
40  *                  1315 Dell Avenue, Campbell, CA  95008
41  * 
42  */
43 /* This is just temporary code... */
44
45 /* The idea is that you construct atomizers (Atom was taken by X11) with
46    a string.  Atomizers constructed with the same initial string will
47    return the same value. */
48
49 #ifndef _Atomizer_hh
50 #define _Atomizer_hh
51
52 class Atomizer : public FolioObject
53 {
54 public: // functions
55   Atomizer (const char *);
56
57 // both of the following routines try to return
58 // a char * as an int.  hopefully, no one calls
59 // them and they can be eliminated.
60
61   size_t value() { return ((size_t) f_value); }
62   operator int () 
63     { return ((size_t) f_value); }
64
65   operator const char * ()
66     { return (f_value); }
67   const char *string() { return (f_value); }
68
69 protected: // variables
70   static List f_pool;
71   char *f_value;
72 };
73
74 #endif /* _Atomizer_hh */
75 /* DO NOT ADD ANY LINES AFTER THIS #endif */