[Mockpp-commits] mockpp/mockpp/production TimeServer.cpp,1.8,1.9 TimeServer.h,1.3,1.4 mockpp_product
Brought to you by:
ewald-arnold
From: Ewald A. <ewa...@us...> - 2006-03-15 21:34:45
|
Update of /cvsroot/mockpp/mockpp/mockpp/production In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv763/mockpp/production Modified Files: TimeServer.cpp TimeServer.h mockpp_production.h Log Message: optionally disable mockpp namespace Index: TimeServer.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/production/TimeServer.h,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- TimeServer.h 29 Dec 2005 19:29:51 -0000 1.3 +++ TimeServer.h 15 Mar 2006 21:34:06 -0000 1.4 @@ -35,7 +35,7 @@ #include <ctime> -namespace mockpp { +MOCKPP_NS_START /** Base class for time serving purposes @@ -71,7 +71,7 @@ }; -} // namespace mockpp +MOCKPP_NS_END #endif // MOCKPP_TimeServer_H Index: mockpp_production.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/production/mockpp_production.h,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- mockpp_production.h 29 Dec 2005 19:29:51 -0000 1.4 +++ mockpp_production.h 15 Mar 2006 21:34:06 -0000 1.5 @@ -39,9 +39,9 @@ * without the bloat of the testing environment. */ -namespace mockpp { +MOCKPP_NS_START -} // namespace mockpp +MOCKPP_NS_END #endif // MOCKPP_PRODUCTION_H Index: TimeServer.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/production/TimeServer.cpp,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- TimeServer.cpp 29 Dec 2005 19:29:51 -0000 1.8 +++ TimeServer.cpp 15 Mar 2006 21:34:06 -0000 1.9 @@ -32,7 +32,7 @@ #include <mockpp/production/TimeServer.h> -namespace mockpp { +MOCKPP_NS_START MOCKPP_EXPORT TimeServer::~TimeServer() @@ -49,7 +49,7 @@ } -} // namespace mockpp +MOCKPP_NS_END |