From: Dominic L. <ma...@us...> - 2005-01-02 14:44:56
|
Update of /cvsroot/robotflow/RobotFlow/Control/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19423/Control/src Modified Files: EVID30_PID.cc GenericPID.cc JoystickControl.cc Saturation.cc Log Message: removing all "using namespace std;" in headers. Bumped version to 0.2.6. Preparing for the RobotFlow namespace. Index: GenericPID.cc =================================================================== RCS file: /cvsroot/robotflow/RobotFlow/Control/src/GenericPID.cc,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** GenericPID.cc 4 Jun 2002 18:07:44 -0000 1.6 --- GenericPID.cc 2 Jan 2005 14:43:55 -0000 1.7 *************** *** 26,29 **** --- 26,31 ---- #include <unistd.h> + using namespace std; + class GenericPID; Index: Saturation.cc =================================================================== RCS file: /cvsroot/robotflow/RobotFlow/Control/src/Saturation.cc,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** Saturation.cc 26 Apr 2002 22:29:21 -0000 1.3 --- Saturation.cc 2 Jan 2005 14:43:55 -0000 1.4 *************** *** 24,27 **** --- 24,29 ---- #include <unistd.h> + using namespace std; + class Saturation; Index: EVID30_PID.cc =================================================================== RCS file: /cvsroot/robotflow/RobotFlow/Control/src/EVID30_PID.cc,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** EVID30_PID.cc 8 Dec 2003 21:32:21 -0000 1.1 --- EVID30_PID.cc 2 Jan 2005 14:43:55 -0000 1.2 *************** *** 6,9 **** --- 6,11 ---- #include <unistd.h> + using namespace std; + class EVID30_PID; Index: JoystickControl.cc =================================================================== RCS file: /cvsroot/robotflow/RobotFlow/Control/src/JoystickControl.cc,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** JoystickControl.cc 8 Dec 2003 21:32:21 -0000 1.1 --- JoystickControl.cc 2 Jan 2005 14:43:55 -0000 1.2 *************** *** 24,27 **** --- 24,29 ---- #include "Vector.h" + using namespace std; + class JoystickControl; |