Advertisement
Pouknouki

Dico.h

Aug 5th, 2013
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.30 KB | None | 0 0
  1. #ifndef DICTIONNAIREINTEGRE_H
  2. #define DICTIONNAIREINTEGRE_H
  3.  
  4. #include <vector>
  5. #include <string>
  6.  
  7. class dictionnaireIntegre
  8. {
  9. public:
  10.     dictionnaireIntegre();
  11.     std::vector<std::string> retourner();
  12. private:
  13.     std::vector<std::string> dictionnaire();
  14. };
  15.  
  16. #endif // DICTIONNAIREINTEGRE_H
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement