consolidate all repos to one for archive
This commit is contained in:
8
semester_2/programiranje_2/naloga0402/Person.cpp
Normal file
8
semester_2/programiranje_2/naloga0402/Person.cpp
Normal file
@@ -0,0 +1,8 @@
|
||||
#include "Person.h"
|
||||
|
||||
Person::Person(std::string firstName, std::string lastName) : firstName(firstName), lastName(lastName) {
|
||||
}
|
||||
|
||||
std::string Person::toString() const {
|
||||
return firstName + " " + lastName;
|
||||
}
|
||||
Reference in New Issue
Block a user