HAHA

Dependencies:   WebSocketClient mbed

readfile.hpp

Committer:
joGenie
Date:
2014-02-24
Revision:
4:56b1ca37a175
Parent:
3:350f07072089
Child:
5:daf08fff7abb

File content as of revision 4:56b1ca37a175:

#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
    bool setConfigCoord(Coordinateur *coord, const string filename);
    
    //Set information of the routeur
    bool setConfigRouteur(Routeur *rout, const string filename);
    
private:
    int string2int(string t);
};

#endif