25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
230 B

  1. #include <string>
  2. #include "Person.h"
  3. Person::Person(string name, string password, string email, string phoneNo)
  4. {
  5. this->name = name;
  6. this->password = password;
  7. this->email = email;
  8. this->phoneNo = phoneNo;
  9. }