diff options
Diffstat (limited to 'Project1/contact.cpp')
| -rw-r--r-- | Project1/contact.cpp | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/Project1/contact.cpp b/Project1/contact.cpp new file mode 100644 index 0000000..9625029 --- /dev/null +++ b/Project1/contact.cpp @@ -0,0 +1,25 @@ +#include <iostream> +#include "contact.h" + +using std::cin; +using std::cout; +using std::endl; + + + +char contact::Set_firstName() +{ + +} + +char contact::Get_firstName() +{ + +} + +void contact::print() +{ + /*cout << "name: " << _name << endl; + cout << "age: " << _age << endl;*/ + +} |