Skip to content

Commit

Permalink
Fixes ChicoState#1
Browse files Browse the repository at this point in the history
  • Loading branch information
jrspiker committed Feb 21, 2018
1 parent c836a72 commit 8d8e148
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions user.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
/*
* @file: user.h
* @creator: Spiker, Jenn
* @date: 02/21/2018
*
* A simple class to create users.
*/


using namespace std;

class User {

public:
string username;
string password;
int id_num;
User();
User(string name, string pass, int id) {

username = name;
password = pass;
id_num = id;

};
//~User();

};

0 comments on commit 8d8e148

Please sign in to comment.