Browse Source

Person empty constructor

Empty constructor for Person is being declared.
Fixing-travis-yml
BinHong Lee 8 years ago
parent
commit
570ac37bac
3 changed files with 11 additions and 0 deletions
  1. +2
    -0
      LogInSystem.cpp
  2. +8
    -0
      Person.cpp
  3. +1
    -0
      Person.h

+ 2
- 0
LogInSystem.cpp View File

@@ -6,6 +6,7 @@
#include <iostream>
#include <string>
#include <fstream>
#include "Person.cpp"
using namespace std;

int getUsernameCounter(string, int);
@@ -20,6 +21,7 @@ void chgPhoneNo();
void quit();

const int size = 10000;
Person person[size];
string username[size];
string password[size];
string email[size];


+ 8
- 0
Person.cpp View File

@@ -2,6 +2,14 @@
#include "Person.h"
using namespace std;

Person::Person()
{
name = "unknown";
password = "";
email = "unknown";
phoneNo = "555-5555";
}

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


+ 1
- 0
Person.h View File

@@ -11,6 +11,7 @@ class Person
string phoneNo;

public :
Person();
Person(string, string, string, string);
void setName(string);
string getName();


Loading…
Cancel
Save