From 9d53d8857eaa1c9405894a88ca75bc4657e42f35 Mon Sep 17 00:00:00 2001 From: msglm Date: Sat, 14 Jan 2023 05:31:48 -0600 Subject: Inital Commit --- C++/Inheritance/person.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 C++/Inheritance/person.h (limited to 'C++/Inheritance/person.h') 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 +using namespace std; +class person { + public: + string fname; + string lname; + string address; + string city; + string state; + int zip; + int phonenum; +}; -- cgit v1.2.3