-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathExternalFunctions.h
More file actions
36 lines (29 loc) · 1.09 KB
/
ExternalFunctions.h
File metadata and controls
36 lines (29 loc) · 1.09 KB
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
#ifndef EXTERNALFUNCTIONS_H
#define EXTERNALFUNCTIONS_H
#include <QString>
#include "TLinkedListUser.h"
#include "KeyLinkedList.h"
#include <QTableWidget>
#include "ProductDelegateClass.h"
using namespace std;
QString NowTime();
void startApp();
void updateFiles();
long long findKeyInString(long long key, QString str_key);
KeyLinkedList keyConvertStringToLinkedList(QString keys);
int ComputePassPow(QString pass);
unsigned long long int CreateKey();
int countDigit(long long n);
template<class N>
ostream& operator<< (ostream& out , TLinkedListUser<N> list);
void TableWidgetAll(QTableWidget *tableWidget , QString target);
void TableWidgetBought(QTableWidget *tableWidget, QString target);
void TableWidgetSold(QTableWidget *tableWidget, QString target);
void TableWidgetFavorites(QTableWidget *tableWidget, QString target);
LinkedListProduct sortBaseSearch(LinkedListProduct list);
vector<ProductDelegateClass> dell(vector<ProductDelegateClass> vec , int a);
unsigned long long createKeyProduct();
bool update();
bool uniqueUserName(QString u_name);
QTextStream& qStdOut();
#endif // EXTERNALFUNCTIONS_H