Advertisement
Guest User

channel.h

a guest
Apr 26th, 2017
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.41 KB | None | 0 0
  1.  
  2. #ifndef CHANNEL_H
  3. #define CHANNEL_H
  4.  
  5. #include<iostream>
  6. #include<vector>
  7. #include<string>
  8. class channel{
  9. private:
  10.     int channelNum;
  11.     std::string title;      
  12. public:
  13.     //set funcs
  14.     setShowTitle(std::string);
  15.     setChannelNum(int num);
  16.     //get funcs
  17.     getShowTitle();
  18.     getChannelNum();
  19.     getChannelNum(int temp);
  20.    
  21.     getCurrentChannel();
  22.  
  23. };
  24. #endif /* TELEVISION_H */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement