comparison src/ov-base.h @ 4254:df5f2e433a11

[project @ 2002-12-31 19:43:07 by jwe]
author jwe
date Tue, 31 Dec 2002 19:43:07 +0000
parents fc9a075d10fb
children db5e0814277a
comparison
equal deleted inserted replaced
4253:c3acf8a967fa 4254:df5f2e433a11
164 164
165 bool is_builtin_function (void) const { return false; } 165 bool is_builtin_function (void) const { return false; }
166 166
167 bool is_dld_function (void) const { return false; } 167 bool is_dld_function (void) const { return false; }
168 168
169 short int short_value (bool = false, bool = false) const;
170
171 unsigned short int ushort_value (bool = false, bool = false) const;
172
169 int int_value (bool = false, bool = false) const; 173 int int_value (bool = false, bool = false) const;
170 174
175 unsigned int uint_value (bool = false, bool = false) const;
176
171 int nint_value (bool = false) const; 177 int nint_value (bool = false) const;
178
179 long int long_value (bool = false, bool = false) const;
180
181 unsigned long int ulong_value (bool = false, bool = false) const;
172 182
173 double double_value (bool = false) const; 183 double double_value (bool = false) const;
174 184
175 double scalar_value (bool frc_str_conv = false) const 185 double scalar_value (bool frc_str_conv = false) const
176 { return double_value (frc_str_conv); } 186 { return double_value (frc_str_conv); }