Disable all code related to libXp
[oweals/cde.git] / cde / programs / dtinfo / DtMmdb / object / integer.C
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 /*
24  * $XConsortium: integer.cc /main/4 1996/06/11 17:24:32 cde-hal $
25  *
26  * Copyright (c) 1993 HAL Computer Systems International, Ltd.
27  * All rights reserved.  Unpublished -- rights reserved under
28  * the Copyright Laws of the United States.  USE OF A COPYRIGHT
29  * NOTICE IS PRECAUTIONARY ONLY AND DOES NOT IMPLY PUBLICATION
30  * OR DISCLOSURE.
31  * 
32  * THIS SOFTWARE CONTAINS CONFIDENTIAL INFORMATION AND TRADE
33  * SECRETS OF HAL COMPUTER SYSTEMS INTERNATIONAL, LTD.  USE,
34  * DISCLOSURE, OR REPRODUCTION IS PROHIBITED WITHOUT THE
35  * PRIOR EXPRESS WRITTEN PERMISSION OF HAL COMPUTER SYSTEMS
36  * INTERNATIONAL, LTD.
37  * 
38  *                         RESTRICTED RIGHTS LEGEND
39  * Use, duplication, or disclosure by the Government is subject
40  * to the restrictions as set forth in subparagraph (c)(l)(ii)
41  * of the Rights in Technical Data and Computer Software clause
42  * at DFARS 252.227-7013.
43  *
44  *          HAL COMPUTER SYSTEMS INTERNATIONAL, LTD.
45  *                  1315 Dell Avenue
46  *                  Campbell, CA  95008
47  * 
48  */
49
50
51 #include "object/integer.h"
52
53 integer::integer(c_code_t c_id) : primitive(c_id)
54 {
55       v_intRep = 0;
56 }
57
58 integer::integer(const integer& x) : primitive(x)
59 {
60    v_intRep = x.v_intRep;
61 }
62
63 integer::~integer()
64 {
65 }
66
67 void integer::set(const int i)
68 {
69    v_intRep = i;
70    set_mode(UPDATE, true);
71 }
72
73 int integer::get()
74 {
75    return v_intRep;
76 }
77
78
79
80 /*
81 Boolean integer::copy(int selector, root*& x) const
82 {
83    if ( f_oid.ccode() != INTEGER_CODE || selector != VALUE)
84       return false;
85    else {
86       x = new integer(*this);
87       return true;
88    }
89 }
90 */
91
92 /*
93 Boolean integer::value_LS(root& x, Boolean safe) const
94 {
95    if ( safe == true &&
96         ( f_oid.ccode() != INTEGER_CODE ||
97           x.my_oid().ccode() != INTEGER_CODE 
98         ) 
99       )
100       return false;
101
102    integer &y = *(integer*)&x;
103    if ( v_intRep < y.v_intRep )
104       return true;
105    else
106       return false;
107 }
108
109 Boolean integer::value_EQ(root& x, Boolean safe) const
110 {
111    if ( safe == true &&
112         ( f_oid.ccode() != INTEGER_CODE || 
113           x.my_oid().ccode() != INTEGER_CODE 
114         ) 
115       ) 
116       return false;
117
118    integer &y = *(integer*)&x;
119    if ( v_intRep == y.v_intRep )
120       return true;
121    else
122       return false;
123 }
124 */
125
126 io_status integer::asciiOut(ostream& out) 
127 {
128    out << v_intRep;
129    return done;
130 }
131
132 io_status integer::asciiIn(istream& in) 
133 {
134    if ( ! cc_is_digit(in) )
135       throw (stringException("a digit expected"));
136
137    in >> v_intRep; 
138
139    if ( in.get() != '\n' ) {
140       throw (stringException("'\\n' expected"));
141    }
142
143    set_mode(UPDATE, true);
144    return done;
145 }
146
147
148 int integer::cdr_sizeof()
149 {
150    return primitive::cdr_sizeof() + sizeof(v_intRep);
151 }
152
153 io_status integer::cdrOut(buffer& buf)
154 {
155    primitive::cdrOut(buf);
156    buf.put((unsigned int)v_intRep);
157    return done;
158 }
159
160 io_status integer::cdrIn(buffer& buf)
161 {
162    primitive::cdrIn(buf);
163    buf.get(*(unsigned int*)&v_intRep);
164    return done;
165 }
166
167 MMDB_BODIES(integer)
168 HANDLER_BODIES(integer)
169