diff --git a/include/vect3d.h b/include/vect3d.h
deleted file mode 100644
index 988908e..0000000
--- a/include/vect3d.h
+++ /dev/null
@@ -1,31 +0,0 @@
-#ifndef __VECT3D_H__
-#define __VECT3D_H__ 
-
-#include <vector>
-using namespace std;
-
-class Vector{
-	public:
-		
-	// Constructeur
-		Vector();
-	//Destructeur
-		~Vector();
-		
-	//Manipulateuer
-		void set_coord(int i, double x);
-		void augmente(double x = 0);
-		
-	//Accesseurs
-		void affiche() const;
-		bool operator==(const Vector&) const;
-		double& operator[](int i);
-		
-		
-	private:
-		
-		vector<double> components;
-	
-};
-
-#endif