|
From: Dale H. <da...@us...> - 2002-06-13 23:42:14
|
Update of /cvsroot/corelinux/corelinux/src/testdrivers/ex8/include In directory usw-pr-cvs1:/tmp/cvs-serv21984/src/testdrivers/ex8/include Modified Files: Dictionary.hpp Modeler.hpp ObjectModel.hpp Log Message: Has added in: #ifdef REQUIRE_STD_NAMESPACE using namespace std; #endif to allow for compilation under compilers that require a namespace declaration. Index: Dictionary.hpp =================================================================== RCS file: /cvsroot/corelinux/corelinux/src/testdrivers/ex8/include/Dictionary.hpp,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** Dictionary.hpp 31 Aug 2000 22:47:56 -0000 1.4 --- Dictionary.hpp 13 Jun 2002 23:42:09 -0000 1.5 *************** *** 36,39 **** --- 36,43 ---- #include <string> + #ifdef REQUIRE_STD_NAMESPACE + using namespace std; + #endif + CORELINUX_MAP( DwordIdentifier, string, less<DwordIdentifier>, NameMap ) ; Index: Modeler.hpp =================================================================== RCS file: /cvsroot/corelinux/corelinux/src/testdrivers/ex8/include/Modeler.hpp,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** Modeler.hpp 31 Aug 2000 22:47:56 -0000 1.4 --- Modeler.hpp 13 Jun 2002 23:42:09 -0000 1.5 *************** *** 38,41 **** --- 38,45 ---- #endif + #ifdef REQUIRE_STD_NAMESPACE + using namespace std; + #endif + CORELINUX_VECTOR( DwordIdentifier , IdVector ) ; CORELINUX_MAP( DwordIdentifier, IdVector, less<DwordIdentifier>, IdMap ) ; Index: ObjectModel.hpp =================================================================== RCS file: /cvsroot/corelinux/corelinux/src/testdrivers/ex8/include/ObjectModel.hpp,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** ObjectModel.hpp 10 Feb 2000 14:32:21 -0000 1.2 --- ObjectModel.hpp 13 Jun 2002 23:42:09 -0000 1.3 *************** *** 36,39 **** --- 36,43 ---- #include <iostream> + #ifdef REQUIRE_STD_NAMESPACE + using namespace std; + #endif + DECLARE_CLASS( Dictionary ); DECLARE_CLASS( Modeler ); |