summaryrefslogtreecommitdiffstats
path: root/C++/Inheritance/person.h
blob: a9fca01a9c88e9aa7beb564408a4ee4ce611f12f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#include <string>
using namespace std;
class person {       
  public:
      string fname;
      string lname;
      string address;
      string city;
      string state;
      int zip;
      int phonenum;
};