routeur done

Dependencies:   mbed

Fork of APP4 by S5info_H14

Revision:
0:71df0feee697
Child:
2:7515831bb5f5
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/readfile.cpp	Sun Feb 23 23:32:09 2014 +0000
@@ -0,0 +1,18 @@
+#include "readfile.hpp"
+
+ReadFile::ReadFile()
+{}
+
+void ReadFile::setConfigCoord(Coordinateur *coord, const string filename)
+{
+    string line;
+    ifstream myfile(filename.c_str());
+    if (myfile.is_open())
+    {
+        while (getline(myfile,line))
+        {
+        }
+        
+        myfile.close(); 
+    }    
+}
\ No newline at end of file