Annotation of parser3/src/types/pa_vdouble.h, revision 1.26
1.11 paf 1: /** @file
1.16 paf 2: Parser: @b double parser class decl.
1.11 paf 3:
1.1 paf 4: Copyright (c) 2001 ArtLebedev Group (http://www.artlebedev.com)
1.2 paf 5: Author: Alexander Petrosyan <paf@design.ru> (http://design.ru/paf)
1.1 paf 6:
1.26 ! parser 7: $Id: pa_vdouble.h,v 1.25 2001/09/24 14:34:25 parser Exp $
1.1 paf 8: */
9:
10: #ifndef PA_VDOUBLE_H
11: #define PA_VDOUBLE_H
12:
1.19 paf 13: #include "classes.h"
1.9 paf 14: #include "pa_common.h"
1.5 paf 15: #include "pa_vstateless_object.h"
1.17 paf 16:
17: extern Methoded *double_class;
1.1 paf 18:
1.11 paf 19: /// value of type 'double'. implemented with @c double
1.4 paf 20: class VDouble : public VStateless_object {
1.1 paf 21: public: // Value
22:
23: const char *type() const { return "double"; }
1.24 parser 24: /// VDouble: clone
25: Value *as_expr_result(bool return_string_as_is=false) { return NEW VDouble(pool(), fdouble); }
1.1 paf 26:
1.11 paf 27: /// VDouble: fdouble
1.1 paf 28: const String *get_string() {
1.6 paf 29: char *buf=(char *)pool().malloc(MAX_NUMBER);
1.22 parser 30: String *result=NEW String(pool());
1.23 parser 31: result->APPEND_CLEAN(
32: buf, snprintf(buf, MAX_NUMBER, "%g", fdouble),
33: name().origin().file, name().origin().line);
1.22 parser 34: return result;
1.1 paf 35: }
1.11 paf 36: /// VDouble: fdouble
1.25 parser 37: double as_double() const { return fdouble; }
1.21 parser 38: /// VDouble: fdouble
1.25 parser 39: int as_int() const { return (int)fdouble; }
1.11 paf 40: /// VDouble: 0 or !0
1.25 parser 41: bool as_bool() const { return fdouble!=0; }
1.10 paf 42:
43: protected: // VAliased
44:
1.13 paf 45: /// disable .CLASS element. @see VAliased::get_element
1.15 paf 46: bool hide_class() { return true; }
1.1 paf 47:
48: public: // usage
49:
1.4 paf 50: VDouble(Pool& apool, double adouble) : VStateless_object(apool, *double_class),
1.1 paf 51: fdouble(adouble) {
52: }
53:
54: void inc(double increment) { fdouble+=increment; }
1.7 paf 55: void mul(double k) { fdouble*=k; }
56: void div(double d) { fdouble/=d; }
57: void mod(int d) { fdouble=((int)fdouble)%d; }
1.1 paf 58:
59: private:
60:
61: double fdouble;
62:
63: };
64:
65: #endif
E-mail: