-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadmin.h
More file actions
40 lines (35 loc) · 826 Bytes
/
admin.h
File metadata and controls
40 lines (35 loc) · 826 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#ifndef ADMIN_H
#define ADMIN_H
#include<iostream>
#include<fstream>
#include<cstring>
#include"base.h"
#include"stock.h"
#include"onlineorder.h"
#include"adminotherdealing.h"
#include"stockhandlebyadmin.h"
using namespace std;
// first class of project
// iss ko base s inherit kia hoa polymorphsim ko achive karne ke liye
class admin : public Base{
private:
int size,size1;
char *username;
char *passcode;
int choice;
int choice1;
int choice_for_while;
// now have call aggragte class
stock *stockobject;
onlineOrder *online;
adminotherdealing *deal;
StockHandleByAdmin *powers;
public:
admin();
void login();
void display();
~admin();
bool operator!();
// ~admin();
};
#endif