routeur done

Dependencies:   mbed

Fork of APP4 by S5info_H14

coordinateur.hpp

Committer:
joGenie
Date:
2014-02-24
Revision:
2:7515831bb5f5
Parent:
0:71df0feee697
Child:
3:350f07072089

File content as of revision 2:7515831bb5f5:

#ifndef COORDINATEUR_HPP
#define COORDINATEUR_HPP

#include <string>
#include "trame.hpp"

using namespace std;

class Coordinateur
{
public:
    // Constructeur
    Coordinateur(PinName _tx, PinName _rx);
    
private:
    Trame trame;
    string pan;
};

#endif