24 lines
450 B
C++
24 lines
450 B
C++
#ifndef UTILITY_TC_H
|
|
#define UTILITY_TC_H
|
|
|
|
#include <iostream>
|
|
#include <ctime>
|
|
|
|
#include <QString>
|
|
#include <QDebug>
|
|
|
|
QString getFileNameBaseOnTime();
|
|
|
|
QString formatTimeStr(char * format);
|
|
|
|
//https://blog.csdn.net/MoreWindows/article/details/6657829
|
|
void bubbleSort(unsigned short * a, int n);
|
|
|
|
void swap(unsigned short * a, unsigned short * b);
|
|
|
|
bool createDir(QString fullPath);
|
|
|
|
QList<QString> getFileInfo(QString file);
|
|
|
|
#endif // UTILITY_TC_H
|