levur

octet.h

Aug 29th, 2012
24
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. #ifndef OCTET_H
  2. #define OCTET_H
  3. #include <string>
  4.  
  5.  
  6. class Octet
  7. {
  8. public:
  9. Octet(int a);
  10. Octet();
  11. virtual ~Octet();
  12. std::string ToBits();
  13. void setOctet(int a);
  14. int getOctet();
  15.  
  16. private:
  17. int numerique;
  18. };
  19.  
  20. #endif // OCTET_H
Advertisement
Add Comment
Please, Sign In to add comment