17 lines
316 B
C++
17 lines
316 B
C++
#ifndef UTILITY_TC_H
|
|
#define UTILITY_TC_H
|
|
|
|
#include <iostream>
|
|
|
|
#include <QString>
|
|
#include <QDebug>
|
|
|
|
QString getFileNameBaseOnTime();
|
|
|
|
//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
|