[GME-commit]
GMESRC/Paradigms/MetaGME/MetaInterpreter2004 LogStream.cpp,1.2,1.3
LogStream.h,1.1,1.2
gme-commit at list.isis.vanderbilt.edu
gme-commit at list.isis.vanderbilt.edu
Fri Dec 31 13:51:22 CST 2004
- Previous message: [GME-commit]
GMESRC/Paradigms/MetaGME/BonExtension/Rep Any.cpp,1.13,1.14
AttributeRep.cpp,1.8,1.9 Dumper.cpp,1.14,1.15 Dumper.h,1.8,1.9
- Next message: [GME-commit] GMESRC/Paradigms/MetaGME/MetaInterpreter2004/Rep
AttributeRep.cpp,1.7,1.8
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /var/lib/gme/GMESRC/Paradigms/MetaGME/MetaInterpreter2004
In directory braindrain:/tmp/cvs-serv1079/MetaInterpreter2004
Modified Files:
LogStream.cpp LogStream.h
Log Message:
BONExt: MOF handling changed
MetaInterpreter: better handling of EnumAttribute formatting errors
CVS User: zolmol
Index: LogStream.cpp
===================================================================
RCS file: /var/lib/gme/GMESRC/Paradigms/MetaGME/MetaInterpreter2004/LogStream.cpp,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** LogStream.cpp 24 Aug 2004 17:34:37 -0000 1.2
--- LogStream.cpp 31 Dec 2004 19:51:20 -0000 1.3
***************
*** 81,82 ****
--- 81,89 ----
}
+ LogStream& operator<<( LogStream& stream, const int i)
+ {
+ char t[32];
+ sprintf( t, "%i", i);
+ return stream << std::string( t);
+ }
+
Index: LogStream.h
===================================================================
RCS file: /var/lib/gme/GMESRC/Paradigms/MetaGME/MetaInterpreter2004/LogStream.h,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** LogStream.h 30 Jul 2004 00:10:22 -0000 1.1
--- LogStream.h 31 Dec 2004 19:51:20 -0000 1.2
***************
*** 19,22 ****
--- 19,23 ----
friend LogStream& operator<<( LogStream& s, const char * r);
friend LogStream& operator<<( LogStream& s, const std::string& r);
+ friend LogStream& operator<<( LogStream& s, const int i);
BON::Project m_proj;
- Previous message: [GME-commit]
GMESRC/Paradigms/MetaGME/BonExtension/Rep Any.cpp,1.13,1.14
AttributeRep.cpp,1.8,1.9 Dumper.cpp,1.14,1.15 Dumper.h,1.8,1.9
- Next message: [GME-commit] GMESRC/Paradigms/MetaGME/MetaInterpreter2004/Rep
AttributeRep.cpp,1.7,1.8
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the GME-commit
mailing list