Index: trunk/ab5.0/jenga/include/common/VectorSupporter.h
===================================================================
--- trunk/ab5.0/jenga/include/common/VectorSupporter.h	(revision 624)
+++ trunk/ab5.0/jenga/include/common/VectorSupporter.h	(revision 624)
@@ -0,0 +1,22 @@
+#pragma once
+
+namespace Jenga{
+namespace Common{
+
+
+template<class T> void EraseVectorItem( T &v, int index )
+{
+	T::iterator it = v.begin();
+	int i = 0;
+	while( i < index )
+	{
+		i ++;
+		it ++;
+	}
+	v.erase( it );
+}
+
+
+
+}
+}
