Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #pragma once
- #include <string>
- class Text
- {
- private:
- std::string name;
- std::string text;
- public:
- std::string getName();
- void setName(std::string);
- std::string getText();
- void setText(std::string);
- };
Advertisement
Add Comment
Please, Sign In to add comment