-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathportal.h
More file actions
25 lines (18 loc) · 808 Bytes
/
portal.h
File metadata and controls
25 lines (18 loc) · 808 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#ifndef _PORTAL_H_
#define _PORTAL_H_
#include <string>
class login
{
public:
bool checklogindata(std::string inputusername, std::string inputpassword, std::string username, std::string password);
};
class dataentry
{
public:
void addentry(std::string firstname, std::string middlename, std::string lastname, int countrycode, long long int personid, long long int phone, std::string email, int dob, std::string mob, int yob, std::string gender);
void showdata();
void showentry(long long int personid);
void updateentry(std::string firstname, std::string middlename, std::string lastname, int countrycode, long long int personid, long long int phone, std::string email, int dob, std::string mob, int yob, std::string gender);
void deleteentry(long long int personid);
};
#endif