2022-06-13 12:01:30 +08:00
|
|
|
#ifndef UTILITY_TC_H
|
|
|
|
#define UTILITY_TC_H
|
|
|
|
|
|
|
|
#include <iostream>
|
2023-03-19 16:44:12 +08:00
|
|
|
#include <ctime>
|
2022-06-13 12:01:30 +08:00
|
|
|
|
|
|
|
#include <QString>
|
|
|
|
#include <QDebug>
|
|
|
|
|
|
|
|
QString getFileNameBaseOnTime();
|
|
|
|
|
2023-03-19 16:44:12 +08:00
|
|
|
QString formatTimeStr(char * format);
|
|
|
|
|
2022-06-13 12:01:30 +08:00
|
|
|
//https://blog.csdn.net/MoreWindows/article/details/6657829
|
|
|
|
void bubbleSort(unsigned short * a, int n);
|
|
|
|
|
|
|
|
void swap(unsigned short * a, unsigned short * b);
|
|
|
|
|
|
|
|
#endif // UTILITY_TC_H
|