routeur done

Dependencies:   mbed

Fork of APP4 by Évan Laverdure

readfile.hpp

Committer:
RufflesAllD
Date:
2014-02-24
Revision:
4:aac38b016952
Parent:
3:350f07072089

File content as of revision 4:aac38b016952:

#ifndef READFILE_HPP
#define READFILE_HPP

#include <iostream>
#include <fstream>

#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);
};

#endif