14 lines
162 B
C
14 lines
162 B
C
|
|
#ifndef COMMONFUN_H
|
||
|
|
#define COMMONFUN_H
|
||
|
|
|
||
|
|
#include <QWidget>
|
||
|
|
|
||
|
|
class CCommonFun
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
CCommonFun();
|
||
|
|
QString GetCurrentTime();
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif // COMMONFUN_H
|