Update of /cvsroot/robotflow/RobotFlow/Generic/src
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19423/Generic/src
Modified Files:
DictionaryLookup.cc KDNode.cc KDPQueue.cc KDPoint.cc KDTree.cc
Random.cc TimeStamp.cc Timer.cc USleep.cc
Log Message:
removing all "using namespace std;" in headers. Bumped version to 0.2.6. Preparing for the RobotFlow namespace.
Index: Timer.cc
===================================================================
RCS file: /cvsroot/robotflow/RobotFlow/Generic/src/Timer.cc,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** Timer.cc 8 Dec 2003 21:40:08 -0000 1.1
--- Timer.cc 2 Jan 2005 14:43:56 -0000 1.2
***************
*** 4,7 ****
--- 4,8 ----
#include <assert.h>
+ using namespace std;
//(ER) for debugging
Index: Random.cc
===================================================================
RCS file: /cvsroot/robotflow/RobotFlow/Generic/src/Random.cc,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** Random.cc 22 Sep 2004 21:00:11 -0000 1.1
--- Random.cc 2 Jan 2005 14:43:56 -0000 1.2
***************
*** 6,9 ****
--- 6,11 ----
#include <stdlib.h>
+ using namespace std;
+
class Random;
Index: KDPQueue.cc
===================================================================
RCS file: /cvsroot/robotflow/RobotFlow/Generic/src/KDPQueue.cc,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** KDPQueue.cc 23 Feb 2004 16:58:27 -0000 1.1
--- KDPQueue.cc 2 Jan 2005 14:43:56 -0000 1.2
***************
*** 20,23 ****
--- 20,25 ----
#include "KDPQueue.h"
+ using namespace std;
+
static int KDPQUEUE_VAR_0 = Object::addObjectType<KDPQueue< double, KDPoint<unsigned char> > >
("KDPQueue<double,KDPoint<unsigned char>>", new ObjectFactory<KDPQueue< double, KDPoint<unsigned char> > > ("KDPQueue<double,KDPoint<unsigned char>>"));
Index: TimeStamp.cc
===================================================================
RCS file: /cvsroot/robotflow/RobotFlow/Generic/src/TimeStamp.cc,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** TimeStamp.cc 8 Dec 2003 21:32:21 -0000 1.1
--- TimeStamp.cc 2 Jan 2005 14:43:56 -0000 1.2
***************
*** 5,8 ****
--- 5,10 ----
#include <sys/time.h>
+ using namespace std;
+
class TimeStamp;
Index: KDTree.cc
===================================================================
RCS file: /cvsroot/robotflow/RobotFlow/Generic/src/KDTree.cc,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** KDTree.cc 23 Feb 2004 16:58:27 -0000 1.1
--- KDTree.cc 2 Jan 2005 14:43:56 -0000 1.2
***************
*** 19,22 ****
--- 19,24 ----
#include "KDTree.h"
+ using namespace std;
+
DECLARE_TYPE(KDPoint<unsigned char>)
DECLARE_TYPE(KDPoint<char>)
Index: KDPoint.cc
===================================================================
RCS file: /cvsroot/robotflow/RobotFlow/Generic/src/KDPoint.cc,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** KDPoint.cc 23 Feb 2004 16:58:26 -0000 1.1
--- KDPoint.cc 2 Jan 2005 14:43:56 -0000 1.2
***************
*** 19,22 ****
--- 19,24 ----
#include "KDPoint.h"
+ using namespace std;
+
DECLARE_TYPE(KDPoint<unsigned char>)
DECLARE_TYPE(KDPoint<char>)
Index: KDNode.cc
===================================================================
RCS file: /cvsroot/robotflow/RobotFlow/Generic/src/KDNode.cc,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** KDNode.cc 23 Feb 2004 16:58:27 -0000 1.1
--- KDNode.cc 2 Jan 2005 14:43:56 -0000 1.2
***************
*** 19,22 ****
--- 19,24 ----
#include "KDNode.h"
+ using namespace std;
+
DECLARE_TYPE(KDNode<unsigned char>)
DECLARE_TYPE(KDNode<char>)
Index: DictionaryLookup.cc
===================================================================
RCS file: /cvsroot/robotflow/RobotFlow/Generic/src/DictionaryLookup.cc,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** DictionaryLookup.cc 27 Jul 2004 20:42:11 -0000 1.2
--- DictionaryLookup.cc 2 Jan 2005 14:43:56 -0000 1.3
***************
*** 23,26 ****
--- 23,28 ----
#include <iostream>
+ using namespace std;
+
class DictionaryLookup;
Index: USleep.cc
===================================================================
RCS file: /cvsroot/robotflow/RobotFlow/Generic/src/USleep.cc,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** USleep.cc 26 Jul 2004 14:44:40 -0000 1.1
--- USleep.cc 2 Jan 2005 14:43:56 -0000 1.2
***************
*** 8,11 ****
--- 8,13 ----
#include <unistd.h>
+ using namespace std;
+
class USleep;
|