Advertisement
Guest User

Untitled

a guest
Dec 4th, 2014
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. #ifndef CAPYBARA_H
  2. #define CAPYBARA_H
  3.  
  4. #include <iostream>
  5. using namespace std;
  6.  
  7. class Capybara
  8. {
  9. public:
  10. Capybara();
  11. Capybara(string x);
  12. void setSnarlVar(string x);
  13. string getSnarlVar();
  14. void snarl();
  15. protected:
  16. private:
  17. string snarlVar;
  18. };
  19.  
  20. #endif // CAPYBARA_H
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement