Commit e39fe85c26eb0313cda0bf93adf69af0651db1f1

henry 2001-08-19T22:20:32

removed the unused loop struct.

diff --git a/include/FTVectoriser.h b/include/FTVectoriser.h
index 1a7392c..f3e731a 100644
--- a/include/FTVectoriser.h
+++ b/include/FTVectoriser.h
@@ -11,38 +11,6 @@
 
 using namespace std;
 
-// template < typename T>
-// class ftLoop
-// {
-// 	public:	
-// 		ftLoop();
-// 		~ftLoop()
-// 		{
-// 			list.clear();
-// 		}
-// 		
-// 		T& operator [] (unsigned int i)
-// 		{
-// 			int x = i;
-// 			if( i < 0)
-// 				x = i + list.size();
-// 			
-// 			if( i > list.size())
-// 				x = i % list.size();
-// 			
-// 			return list[x];
-// 		}
-// 		
-// 		void push_back( T t)
-// 		{
-// 			list.push_back(t);
-// 		}
-// 		
-// 	private:
-// 		vector<T> list;
-// };
-
-
 class ftPoint
 {
 	public: