summaryrefslogtreecommitdiff
path: root/7p15.cpp
diff options
context:
space:
mode:
Diffstat (limited to '7p15.cpp')
-rw-r--r--7p15.cpp8
1 files changed, 7 insertions, 1 deletions
diff --git a/7p15.cpp b/7p15.cpp
index 58d5fbf..8a6662c 100644
--- a/7p15.cpp
+++ b/7p15.cpp
@@ -1,12 +1,18 @@
#include <iostream>
+#include "person.hpp"
/*
*
- * Description
+ * 7.15
*
*
*/
int main () {
+
+ Person p1("John Doe");
+ Person p2("Jane Doe", "Street Street 1");
+ std::cout << p1.GetName() << " " << p1.GetAddress() << std::endl;
+ std::cout << p2.GetName() << " " << p2.GetAddress() << std::endl;
return 0;
}