[Mockpp-commits] mockpp/mockpp/production TimeServer.cpp,1.9,1.10 TimeServer.h,1.4,1.5
Brought to you by:
ewald-arnold
From: Ewald A. <ewa...@us...> - 2006-03-22 19:13:45
|
Update of /cvsroot/mockpp/mockpp/mockpp/production In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25248/mockpp/production Modified Files: TimeServer.cpp TimeServer.h Log Message: make TimeServer class independent from lib Index: TimeServer.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/production/TimeServer.h,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- TimeServer.h 15 Mar 2006 21:34:06 -0000 1.4 +++ TimeServer.h 22 Mar 2006 19:13:34 -0000 1.5 @@ -48,7 +48,9 @@ /** Destroys the time server. */ - virtual ~TimeServer(); + virtual ~TimeServer() + { + } /** Returns the current unix time * @return unix time Index: TimeServer.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/production/TimeServer.cpp,v retrieving revision 1.9 retrieving revision 1.10 diff -u -d -r1.9 -r1.10 --- TimeServer.cpp 15 Mar 2006 21:34:06 -0000 1.9 +++ TimeServer.cpp 22 Mar 2006 19:13:34 -0000 1.10 @@ -35,14 +35,6 @@ MOCKPP_NS_START -MOCKPP_EXPORT TimeServer::~TimeServer() -{ -} - - -/////////////////////////////////////////////////////////////// - - std::time_t MOCKPP_EXPORT RealTimeServer::getUnixTime() { return std::time(NULL); |