Update of /cvsroot/robotflow/RobotFlow/Vision/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22316 Modified Files: ColorHistExtraction.cc MeanShiftTracker.cc VisualFeatureDesc.cc VisualHistogramDesc.cc VisualROI.cc VisualTarget.cc VisualTargetManager.cc Log Message: Added std namespace usage Index: VisualFeatureDesc.cc =================================================================== RCS file: /cvsroot/robotflow/RobotFlow/Vision/src/VisualFeatureDesc.cc,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** VisualFeatureDesc.cc 12 Apr 2005 19:43:55 -0000 1.2 --- VisualFeatureDesc.cc 12 Apr 2005 19:58:10 -0000 1.3 *************** *** 23,26 **** --- 23,27 ---- using namespace FD; + using namespace std; namespace RobotFlow { Index: VisualTarget.cc =================================================================== RCS file: /cvsroot/robotflow/RobotFlow/Vision/src/VisualTarget.cc,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** VisualTarget.cc 12 Apr 2005 19:43:55 -0000 1.3 --- VisualTarget.cc 12 Apr 2005 19:58:10 -0000 1.4 *************** *** 19,22 **** --- 19,23 ---- using namespace FD; + using namespace std; namespace RobotFlow { Index: VisualTargetManager.cc =================================================================== RCS file: /cvsroot/robotflow/RobotFlow/Vision/src/VisualTargetManager.cc,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** VisualTargetManager.cc 12 Apr 2005 19:43:55 -0000 1.3 --- VisualTargetManager.cc 12 Apr 2005 19:58:10 -0000 1.4 *************** *** 18,21 **** --- 18,22 ---- using namespace FD; + using namespace std; namespace RobotFlow { Index: ColorHistExtraction.cc =================================================================== RCS file: /cvsroot/robotflow/RobotFlow/Vision/src/ColorHistExtraction.cc,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** ColorHistExtraction.cc 12 Apr 2005 19:43:55 -0000 1.3 --- ColorHistExtraction.cc 12 Apr 2005 19:58:10 -0000 1.4 *************** *** 18,21 **** --- 18,22 ---- using namespace FD; + using namespace std; namespace RobotFlow { Index: VisualROI.cc =================================================================== RCS file: /cvsroot/robotflow/RobotFlow/Vision/src/VisualROI.cc,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** VisualROI.cc 12 Apr 2005 19:43:55 -0000 1.3 --- VisualROI.cc 12 Apr 2005 19:58:10 -0000 1.4 *************** *** 2,5 **** --- 2,6 ---- using namespace FD; + using namespace std; namespace RobotFlow { Index: MeanShiftTracker.cc =================================================================== RCS file: /cvsroot/robotflow/RobotFlow/Vision/src/MeanShiftTracker.cc,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** MeanShiftTracker.cc 12 Apr 2005 19:43:55 -0000 1.3 --- MeanShiftTracker.cc 12 Apr 2005 19:58:10 -0000 1.4 *************** *** 18,21 **** --- 18,22 ---- using namespace FD; + using namespace std; namespace RobotFlow { Index: VisualHistogramDesc.cc =================================================================== RCS file: /cvsroot/robotflow/RobotFlow/Vision/src/VisualHistogramDesc.cc,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** VisualHistogramDesc.cc 12 Apr 2005 19:43:55 -0000 1.3 --- VisualHistogramDesc.cc 12 Apr 2005 19:58:10 -0000 1.4 *************** *** 19,22 **** --- 19,23 ---- using namespace FD; + using namespace std; namespace RobotFlow { |