Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #ifndef ANNEAU_HPP
- #define ANNEAU_HPP
- #include <iostream>
- #include <list>
- #include "noeud.hpp"
- using namespace std;
- class Anneau {
- private:
- list<Noeud> L;
- public:
- Anneau();
- Anneau(list<Noeud> _L);
- ~Anneau();
- list<Noeud>::iterator _prev(list<Noeud>::iterator &it);
- void ronde();
- short majorite();
- list<Noeud> get_anneau();
- };
- #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement