Update of /cvsroot/robotflow/RobotFlow/Probes/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19423/Probes/src Modified Files: CheckBoxPanel.cc ColorTrain.cc ImageProbe.cc ImageProbeSDL.cc LaserProbe.cc PTZControl.cc SymbolKeypad.cc VirtualJoystick.cc Log Message: removing all "using namespace std;" in headers. Bumped version to 0.2.6. Preparing for the RobotFlow namespace. Index: ImageProbeSDL.cc =================================================================== RCS file: /cvsroot/robotflow/RobotFlow/Probes/src/ImageProbeSDL.cc,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** ImageProbeSDL.cc 13 Jun 2004 19:18:30 -0000 1.2 --- ImageProbeSDL.cc 2 Jan 2005 14:44:00 -0000 1.3 *************** *** 28,31 **** --- 28,34 ---- #include <SDL_endian.h> /* Used for the endian-dependent 24 bpp mode */ + using namespace std; + + //forward declaration class ImageProbeSDL; Index: VirtualJoystick.cc =================================================================== RCS file: /cvsroot/robotflow/RobotFlow/Probes/src/VirtualJoystick.cc,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** VirtualJoystick.cc 16 Aug 2004 19:19:23 -0000 1.7 --- VirtualJoystick.cc 2 Jan 2005 14:44:00 -0000 1.8 *************** *** 11,14 **** --- 11,16 ---- #endif + using namespace std; + DECLARE_NODE(VirtualJoystick) /*Node Index: PTZControl.cc =================================================================== RCS file: /cvsroot/robotflow/RobotFlow/Probes/src/PTZControl.cc,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** PTZControl.cc 27 Jul 2004 18:23:02 -0000 1.8 --- PTZControl.cc 2 Jan 2005 14:44:00 -0000 1.9 *************** *** 11,14 **** --- 11,16 ---- #endif + using namespace std; + DECLARE_NODE(PTZControl) /*Node Index: LaserProbe.cc =================================================================== RCS file: /cvsroot/robotflow/RobotFlow/Probes/src/LaserProbe.cc,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** LaserProbe.cc 30 Apr 2003 19:40:25 -0000 1.3 --- LaserProbe.cc 2 Jan 2005 14:44:00 -0000 1.4 *************** *** 11,14 **** --- 11,17 ---- #endif + using namespace std; + + DECLARE_NODE(LaserProbe) /*Node Index: CheckBoxPanel.cc =================================================================== RCS file: /cvsroot/robotflow/RobotFlow/Probes/src/CheckBoxPanel.cc,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** CheckBoxPanel.cc 16 Aug 2004 17:42:56 -0000 1.2 --- CheckBoxPanel.cc 2 Jan 2005 14:43:59 -0000 1.3 *************** *** 27,30 **** --- 27,32 ---- #include <Vector.h> + using namespace std; + //forward declaration class CheckBoxPanel; Index: SymbolKeypad.cc =================================================================== RCS file: /cvsroot/robotflow/RobotFlow/Probes/src/SymbolKeypad.cc,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** SymbolKeypad.cc 27 Jul 2004 17:58:03 -0000 1.3 --- SymbolKeypad.cc 2 Jan 2005 14:44:00 -0000 1.4 *************** *** 8,11 **** --- 8,13 ---- #include "Vector.h" + using namespace std; + DECLARE_NODE(SymbolKeypad) /*Node Index: ImageProbe.cc =================================================================== RCS file: /cvsroot/robotflow/RobotFlow/Probes/src/ImageProbe.cc,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** ImageProbe.cc 13 Jun 2004 19:32:12 -0000 1.8 --- ImageProbe.cc 2 Jan 2005 14:44:00 -0000 1.9 *************** *** 28,31 **** --- 28,33 ---- #include "libgnomecanvas/gnome-canvas-pixbuf.h" + using namespace std; + //forward declaration class ImageProbe; Index: ColorTrain.cc =================================================================== RCS file: /cvsroot/robotflow/RobotFlow/Probes/src/ColorTrain.cc,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** ColorTrain.cc 30 Mar 2004 14:39:59 -0000 1.1 --- ColorTrain.cc 2 Jan 2005 14:44:00 -0000 1.2 *************** *** 29,32 **** --- 29,34 ---- #include "ColorLookup.h" + using namespace std; + //forward declaration class ColorTrain; |