|
From: Dale H. <da...@us...> - 2002-06-13 23:42:15
|
Update of /cvsroot/corelinux/corelinux/src/testdrivers/ex7/include In directory usw-pr-cvs1:/tmp/cvs-serv21984/src/testdrivers/ex7/include Modified Files: BannerComponent.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: BannerComponent.hpp =================================================================== RCS file: /cvsroot/corelinux/corelinux/src/testdrivers/ex7/include/BannerComponent.hpp,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** BannerComponent.hpp 10 Feb 2000 14:32:21 -0000 1.2 --- BannerComponent.hpp 13 Jun 2002 23:42:09 -0000 1.3 *************** *** 29,32 **** --- 29,36 ---- #include <iostream> + #ifdef REQUIRE_STD_NAMESPACE + using namespace std; + #endif + /** A BannerComponent is a base component that displays |