From 46dd78806ebac69c88cb07cecb3afae1835b783a Mon Sep 17 00:00:00 2001 From: Oskar Date: Tue, 17 Sep 2024 16:36:14 +0200 Subject: more --- person.hpp | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 person.hpp (limited to 'person.hpp') diff --git a/person.hpp b/person.hpp new file mode 100644 index 0000000..66ec7f0 --- /dev/null +++ b/person.hpp @@ -0,0 +1,12 @@ +#ifndef PERSON_H +#define PERSON_H +#include + +struct Person { + std::string Name; + std::string Address; + std::string GetAddress() const { return Address; } + std::string GetName() const { return Name; } +}; + +#endif -- cgit v1.2.3