Update of /cvsroot/csp/APPLICATIONS/SimData/Include/SimData
In directory sc8-pr-cvs1:/tmp/cvs-serv17793/Include/SimData
Modified Files:
InterfaceRegistry.h
Log Message:
Index: InterfaceRegistry.h
===================================================================
RCS file: /cvsroot/csp/APPLICATIONS/SimData/Include/SimData/InterfaceRegistry.h,v
retrieving revision 1.11
retrieving revision 1.12
diff -C2 -d -r1.11 -r1.12
*** InterfaceRegistry.h 21 Mar 2003 18:23:38 -0000 1.11
--- InterfaceRegistry.h 28 Mar 2003 11:18:28 -0000 1.12
***************
*** 115,118 ****
--- 115,127 ----
self->set(p, name, TypeAdapter(v));
}
+ virtual void push_back(Object *p, const char *name, const char *v) {
+ self->push_back(p, name, TypeAdapter(v));
+ }
+ virtual void push_back(Object *p, const char *name, int v) {
+ self->push_back(p, name, TypeAdapter(v));
+ }
+ virtual void push_back(Object *p, const char *name, double v) {
+ self->push_back(p, name, TypeAdapter(v));
+ }
virtual void push_back(Object *p, const char *name, const BaseType &v) {
self->push_back(p, name, TypeAdapter(v));
|