Advertisement
abuzuhair

Untitled

Aug 15th, 2018
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.17 KB | None | 0 0
  1. class PoweredDevice
  2. {
  3. };
  4.  
  5. class Scanner: public PoweredDevice
  6. {
  7. };
  8.  
  9. class Printer: public PoweredDevice
  10. {
  11. };
  12.  
  13. class Copier: public Scanner, public Printer
  14. {
  15. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement