21 lines
342 B
C++

#ifndef NALOGA0402_PERSON_H
#define NALOGA0402_PERSON_H
#include <string>
class Person {
private:
std::string firstName, lastName;
public:
Person() = default;
Person(std::string firstName, std::string lastName);
~Person() = default;
std::string toString() const;
};
#endif //NALOGA0402_PERSON_H