This repository has been archived on 2025-04-11. You can view files and clone it, but cannot push or open issues or pull requests.
dmspine64backup/user.h

45 lines
1,010 B
C
Raw Normal View History

2015-09-30 17:10:16 -05:00
#include <fstream>
#include <iostream>
#include <vector>
2015-09-30 20:08:29 -05:00
// class User {
// string name;
// string password;
// string phone_number;
// string fax_number;
// string postal_address;
// vector<string> groups;
// vector<string> messages;
2015-09-30 17:10:16 -05:00
2015-09-30 20:08:29 -05:00
// bool is_admin;
// bool is_logged_in;
2015-09-30 17:10:16 -05:00
2015-09-30 20:08:29 -05:00
// public:
// User();
// User(string n, string pass, string phone, string fax, string postal, bool admin);
// string getName();
// string getPassword();
// string getPhoneNumber();
// string getFaxNumber();
// string getPostalAddress();
// vector<string> getGroups();
// vector<string> getMessages();
// bool confirmAdmin();
// bool checkLogin();
// void setName(string new_name);
// void setPassword(string new_name);
// void setPhone(string new_phone);
// void setFax(string new_fax);
// void setPostal(string new_postal);
// };
2015-09-30 17:10:16 -05:00
2015-09-30 20:08:29 -05:00
// class Message {
// string timestamp;
// string text;
2015-09-30 17:10:16 -05:00
2015-09-30 20:08:29 -05:00
// public:
// Message();
// Message(string time, string t);
// };
2015-09-30 17:10:16 -05:00