www

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

GrapheEcart.h (369B)


      1 #ifndef GRAPHEECART_H_INCLUDED
      2 #define GRAPHEECART_H_INCLUDED
      3 
      4 #include "Graphe.h"
      5 
      6 class GrapheEcart : public Graphe
      7 {
      8     private :
      9 
     10 
     11     public :
     12     GrapheEcart(string nom);
     13     GrapheEcart(string,const Graphe*);
     14     ~GrapheEcart();
     15 
     16     void miseAJour(listeArcs_t chemin, int k);
     17     arcs_t getListeArcs();
     18 };
     19 
     20 #endif // GRAPHEECART_H_INCLUDED