Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include "Text.h"
- std::string Text::getName() {
- return name;
- }
- void Text::setName(std::string name) {
- this->name = name;
- }
- std::string Text::getText() {
- return this->text;
- }
- void Text::setText(std::string text) {
- this->text = text;
- }
Advertisement
Add Comment
Please, Sign In to add comment