Changeset 104 for cpp/gdk/param.h


Ignore:
Timestamp:
07/23/13 18:15:30 (11 years ago)
Author:
sz
Message:

introducing object de/serialization - see serialtest.cpp
the core GDK classes can be now used in multiple threads (ifdef MULTITHREADED)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • cpp/gdk/param.h

    r93 r104  
    151151void load(VirtFILE*);
    152152void load2(const SString &,int &);
     153
     154static const char* SERIALIZATION_PREFIX;
    153155};
    154156
     
    221223        @param n Param's name
    222224*/
    223 SimpleAbstractParam(void* o=0,const char*n=0):object(o),myname(n),dontcheckchanges(0) {}
     225SimpleAbstractParam(void* o=0,const char*n=0):myname(n),dontcheckchanges(0),object(o) {}
     226void setDontCheckChanges(bool x) {dontcheckchanges=x;}
    224227
    225228void select(void *o) {object=o;}
Note: See TracChangeset for help on using the changeset viewer.