HAHA

Dependencies:   WebSocketClient mbed

Revision:
0:71df0feee697
Child:
3:350f07072089
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/readfile.hpp	Sun Feb 23 23:32:09 2014 +0000
@@ -0,0 +1,28 @@
+#ifndef READFILE_HPP
+#define READFILE_HPP
+
+#include <iostream>
+#include <fstream>
+#include <string>
+
+#include "mbed.h"
+#include "coordinateur.hpp"
+#include "routeur.hpp"
+
+using namespace std;
+
+class ReadFile
+{
+public:
+
+    // Constructeur
+    ReadFile();
+    
+    //Set information of the coordinateur
+    void setConfigCoord(Coordinateur *coord, const string filename);
+    
+    //Set information of the routeur
+    void setConfigRouteur(Routeur *rout, const string filename);
+};
+
+#endif
\ No newline at end of file