Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #ifndef OCTET_H
- #define OCTET_H
- #include <string>
- class Octet
- {
- public:
- Octet(int a);
- Octet();
- virtual ~Octet();
- std::string ToBits();
- void setOctet(int a);
- int getOctet();
- private:
- int numerique;
- };
- #endif // OCTET_H
Advertisement
Add Comment
Please, Sign In to add comment