Files
ximeaAirborneSystem/Header_Files/utility_tc.h
tangchao0503 371c422a34 1. 错误控制;
2. 创建配置文件的文件夹;
2023-04-10 15:54:57 +08:00

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