summaryrefslogtreecommitdiffstats
path: root/C++/Inheritance/person.h
diff options
context:
space:
mode:
Diffstat (limited to 'C++/Inheritance/person.h')
-rw-r--r--C++/Inheritance/person.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/C++/Inheritance/person.h b/C++/Inheritance/person.h
new file mode 100644
index 0000000..a9fca01
--- /dev/null
+++ b/C++/Inheritance/person.h
@@ -0,0 +1,12 @@
+#include <string>
+using namespace std;
+class person {
+ public:
+ string fname;
+ string lname;
+ string address;
+ string city;
+ string state;
+ int zip;
+ int phonenum;
+};