From: Dominic L. <ma...@us...> - 2005-01-02 14:44:45
|
Update of /cvsroot/robotflow/RobotFlow/Pioneer2/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19423/Pioneer2/src Modified Files: PSOSPacket.cc Pioneer2Connect.cc Pioneer2PacketManager.cc Pioneer2RotationIn.cc Pioneer2Sonars.cc Pioneer2VelocityIn.cc Pioneer2VelocityOut.cc Pioneer2Voltage.cc Pioneer2xyPos.cc Log Message: removing all "using namespace std;" in headers. Bumped version to 0.2.6. Preparing for the RobotFlow namespace. Index: Pioneer2Voltage.cc =================================================================== RCS file: /cvsroot/robotflow/RobotFlow/Pioneer2/src/Pioneer2Voltage.cc,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** Pioneer2Voltage.cc 18 Apr 2002 20:18:50 -0000 1.2 --- Pioneer2Voltage.cc 2 Jan 2005 14:43:58 -0000 1.3 *************** *** 23,26 **** --- 23,28 ---- #include "Pioneer2PacketManager.h" + using namespace std; + class Pioneer2Voltage; Index: Pioneer2Connect.cc =================================================================== RCS file: /cvsroot/robotflow/RobotFlow/Pioneer2/src/Pioneer2Connect.cc,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** Pioneer2Connect.cc 16 Aug 2004 19:20:03 -0000 1.8 --- Pioneer2Connect.cc 2 Jan 2005 14:43:58 -0000 1.9 *************** *** 32,35 **** --- 32,37 ---- #include <sys/time.h> + using namespace std; + DECLARE_NODE(Pioneer2Connect) /*Node Index: Pioneer2VelocityOut.cc =================================================================== RCS file: /cvsroot/robotflow/RobotFlow/Pioneer2/src/Pioneer2VelocityOut.cc,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** Pioneer2VelocityOut.cc 18 Apr 2002 20:18:50 -0000 1.2 --- Pioneer2VelocityOut.cc 2 Jan 2005 14:43:58 -0000 1.3 *************** *** 23,26 **** --- 23,28 ---- #include "Pioneer2PacketManager.h" + using namespace std; + class Pioneer2VelocityOut; Index: Pioneer2RotationIn.cc =================================================================== RCS file: /cvsroot/robotflow/RobotFlow/Pioneer2/src/Pioneer2RotationIn.cc,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** Pioneer2RotationIn.cc 18 Apr 2002 20:18:50 -0000 1.2 --- Pioneer2RotationIn.cc 2 Jan 2005 14:43:58 -0000 1.3 *************** *** 22,25 **** --- 22,27 ---- #include "Pioneer2PacketManager.h" + using namespace std; + class Pioneer2RotationIn; Index: Pioneer2PacketManager.cc =================================================================== RCS file: /cvsroot/robotflow/RobotFlow/Pioneer2/src/Pioneer2PacketManager.cc,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** Pioneer2PacketManager.cc 11 Nov 2004 21:43:00 -0000 1.17 --- Pioneer2PacketManager.cc 2 Jan 2005 14:43:58 -0000 1.18 *************** *** 32,35 **** --- 32,37 ---- #include <assert.h> + using namespace std; + Pioneer2PacketManager* Pioneer2PacketManager::m_instance = NULL; const int Pioneer2PacketManager::MAX_QUEUE_SIZE = 20; Index: Pioneer2xyPos.cc =================================================================== RCS file: /cvsroot/robotflow/RobotFlow/Pioneer2/src/Pioneer2xyPos.cc,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** Pioneer2xyPos.cc 18 Apr 2002 20:18:50 -0000 1.2 --- Pioneer2xyPos.cc 2 Jan 2005 14:43:58 -0000 1.3 *************** *** 22,25 **** --- 22,27 ---- #include <math.h> + using namespace std; + class Pioneer2xyPos; Index: Pioneer2Sonars.cc =================================================================== RCS file: /cvsroot/robotflow/RobotFlow/Pioneer2/src/Pioneer2Sonars.cc,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** Pioneer2Sonars.cc 26 Nov 2003 14:31:58 -0000 1.6 --- Pioneer2Sonars.cc 2 Jan 2005 14:43:58 -0000 1.7 *************** *** 22,25 **** --- 22,27 ---- #include "Vector.h" + using namespace std; + class Pioneer2Sonars; Index: PSOSPacket.cc =================================================================== RCS file: /cvsroot/robotflow/RobotFlow/Pioneer2/src/PSOSPacket.cc,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** PSOSPacket.cc 14 Aug 2003 15:33:55 -0000 1.5 --- PSOSPacket.cc 2 Jan 2005 14:43:58 -0000 1.6 *************** *** 25,28 **** --- 25,29 ---- #include <assert.h> + using namespace std; PSOSPacket::PSOSPacket() Index: Pioneer2VelocityIn.cc =================================================================== RCS file: /cvsroot/robotflow/RobotFlow/Pioneer2/src/Pioneer2VelocityIn.cc,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** Pioneer2VelocityIn.cc 5 Aug 2003 21:10:54 -0000 1.4 --- Pioneer2VelocityIn.cc 2 Jan 2005 14:43:58 -0000 1.5 *************** *** 21,24 **** --- 21,26 ---- #include "Pioneer2PacketManager.h" + using namespace std; + class Pioneer2VelocityIn; |