|
From: Dale H. <da...@us...> - 2002-06-13 23:42:14
|
Update of /cvsroot/corelinux/corelinux/src/testdrivers/ex19/include
In directory usw-pr-cvs1:/tmp/cvs-serv21984/src/testdrivers/ex19/include
Modified Files:
ListColleague.hpp ListMediator.hpp ListMementos.hpp
SelectColleague.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: ListColleague.hpp
===================================================================
RCS file: /cvsroot/corelinux/corelinux/src/testdrivers/ex19/include/ListColleague.hpp,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** ListColleague.hpp 31 Aug 2000 22:49:01 -0000 1.2
--- ListColleague.hpp 13 Jun 2002 23:42:09 -0000 1.3
***************
*** 34,37 ****
--- 34,41 ----
#endif
+ #ifdef REQUIRE_STD_NAMESPACE
+ using namespace std;
+ #endif
+
DECLARE_CLASS( ListMediator );
DECLARE_CLASS( ListColleague );
Index: ListMediator.hpp
===================================================================
RCS file: /cvsroot/corelinux/corelinux/src/testdrivers/ex19/include/ListMediator.hpp,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** ListMediator.hpp 31 Aug 2000 22:49:01 -0000 1.2
--- ListMediator.hpp 13 Jun 2002 23:42:09 -0000 1.3
***************
*** 42,45 ****
--- 42,49 ----
#endif
+ #ifdef REQUIRE_STD_NAMESPACE
+ using namespace std;
+ #endif
+
DECLARE_CLASS( ListColleague ); // Adds to list, notifies of List Change
// Notified of edit change
Index: ListMementos.hpp
===================================================================
RCS file: /cvsroot/corelinux/corelinux/src/testdrivers/ex19/include/ListMementos.hpp,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** ListMementos.hpp 31 Aug 2000 22:49:01 -0000 1.2
--- ListMementos.hpp 13 Jun 2002 23:42:09 -0000 1.3
***************
*** 34,37 ****
--- 34,41 ----
#endif
+ #ifdef REQUIRE_STD_NAMESPACE
+ using namespace std;
+ #endif
+
DECLARE_CLASS( ChangedListMemento );
Index: SelectColleague.hpp
===================================================================
RCS file: /cvsroot/corelinux/corelinux/src/testdrivers/ex19/include/SelectColleague.hpp,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** SelectColleague.hpp 31 Aug 2000 22:49:01 -0000 1.2
--- SelectColleague.hpp 13 Jun 2002 23:42:09 -0000 1.3
***************
*** 34,37 ****
--- 34,41 ----
#endif
+ #ifdef REQUIRE_STD_NAMESPACE
+ using namespace std;
+ #endif
+
DECLARE_CLASS( ListMediator );
DECLARE_CLASS( SelectColleague );
|