-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHeader.h
35 lines (31 loc) · 900 Bytes
/
Header.h
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
#pragma once
#include <iostream>
#include <Windows.h>
#include <fstream>
#include <iomanip>
#include <string>
#include <sstream>
#include <vector>
#include <cctype>
#include <conio.h>
#include<stdlib.h>
#include <ctime>
#pragma warning(disable:4996)
const int MAX_SIZE = 100;
const int MAX_SO_LUONG_VE = 100;
using namespace std;
void setColor(int color);
void setColor(int backgound_color, int text_color);
long getCurrentTimestamp();
long convertDateToTimestamp(int day, int month, int year, int hour, int min, int sec);
string getCurrentDate();
void loading(int sleep, int n);
string convertUpperCaseAndDeleteSpace(string x);
string convertUpperCase(string x);
string passwordInput(int maxLength);
bool checkContainsSpacing(string x);
bool checkIsNumberString(string x);
void menuChucNang();
void dangNhapNhanVien(string& username, string& password);
void menuAdmin();
void menuAdminThongKe();