Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: WebSocketClient mbed
Diff: readfile.hpp
- 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