Advertisement
Guest User

Untitled

a guest
Dec 7th, 2017
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. #pragma once
  2.  
  3. #include <string>
  4.  
  5. class Item {
  6. private:
  7. std::string name_;
  8. std::string html_;
  9. public:
  10. Item(std::string name, std::string html) :
  11. name_{name},
  12. html_{html} {
  13. }
  14.  
  15. std::string getName();
  16. std::string getHtml();
  17. };
  18.  
  19. //Item.h
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement