Class: GPS_PVT::Coordinate::GC_VALUE
- Inherits:
-
Object
- Object
- GPS_PVT::Coordinate::GC_VALUE
- Defined in:
- ext/gps_pvt/Coordinate/Coordinate_wrap.cxx
Instance Method Summary collapse
-
#inspect(*args) ⇒ Object
call-seq: inspect -> VALUE.
-
#to_s(*args) ⇒ Object
call-seq: to_s -> VALUE.
Instance Method Details
#inspect(*args) ⇒ Object
call-seq:
inspect -> VALUE
Inspect class and its contents.
4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 |
# File 'ext/gps_pvt/SylphideMath/SylphideMath_wrap.cxx', line 4261
SWIGINTERN VALUE
_wrap_GC_VALUE_inspect(int argc, VALUE *argv, VALUE self) {
swig::GC_VALUE *arg1 = (swig::GC_VALUE *) 0 ;
swig::GC_VALUE r1 ;
VALUE result;
VALUE vresult = Qnil;
if ((argc < 0) || (argc > 0)) {
rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc); SWIG_fail;
}
r1 = self; arg1 = &r1;
result = (VALUE)((swig::GC_VALUE const *)arg1)->inspect();
vresult = result;
return vresult;
fail:
return Qnil;
}
|
#to_s(*args) ⇒ Object
call-seq:
to_s -> VALUE
Convert class to a String representation.
4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 |
# File 'ext/gps_pvt/SylphideMath/SylphideMath_wrap.cxx', line 4288
SWIGINTERN VALUE
_wrap_GC_VALUE_to_s(int argc, VALUE *argv, VALUE self) {
swig::GC_VALUE *arg1 = (swig::GC_VALUE *) 0 ;
swig::GC_VALUE r1 ;
VALUE result;
VALUE vresult = Qnil;
if ((argc < 0) || (argc > 0)) {
rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc); SWIG_fail;
}
r1 = self; arg1 = &r1;
result = (VALUE)((swig::GC_VALUE const *)arg1)->to_s();
vresult = result;
return vresult;
fail:
return Qnil;
}
|