Quellcode durchsuchen

Person

Added Person class and header file.
Fixing-travis-yml
BinHong Lee vor 8 Jahren
Ursprung
Commit
04ac2bebe8
3 geänderte Dateien mit 25 neuen und 0 gelöschten Zeilen
  1. +10
    -0
      Person.cpp
  2. +14
    -0
      Person.h
  3. +1
    -0
      database.txt

+ 10
- 0
Person.cpp Datei anzeigen

@@ -0,0 +1,10 @@
#include <string>
#include "Person.h"

Person::Person(string name, string password, string email, string phoneNo)
{
this->name = name;
this->password = password;
this->email = email;
this->phoneNo = phoneNo;
}

+ 14
- 0
Person.h Datei anzeigen

@@ -0,0 +1,14 @@
#include <string>
#include <iostream>
using namespace std;

class Person
{
string name;
string password;
string email;
string phoneNo;

public :
Person(string, string, string, string);
};

+ 1
- 0
database.txt Datei anzeigen

@@ -1,3 +1,4 @@
binhonglee bhlee03655 binhonglee@hotmail.com +13479618886
binhong binhong binhong@binhong.me +14802527013

Laden…
Abbrechen
Speichern