aboutsummaryrefslogtreecommitdiff
path: root/Project1/contact.cpp
blob: 7b0e570ff443422756efd3118376fc380c0c0d3e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#include <iostream>
#include "contact.h"

using std::cin;
using std::cout;
using std::endl;



void contact::Set_firstName(char firstName)
{
	*_firstName = firstName;
}

char* contact::Get_firstName()
{
	return _firstName;
}

void contact::print()
{
	/*cout << "name: " << _name << endl;
	cout << "age: " << _age << endl;*/

}