14 lines
234 B
C++
14 lines
234 B
C++
#ifndef COMMON_H
|
|
#define COMMON_H
|
|
#include <QByteArray>
|
|
#include "data_config.h"
|
|
class Common
|
|
{
|
|
public:
|
|
Common();
|
|
|
|
|
|
};
|
|
void messageHandler(QtMsgType type, const QMessageLogContext &context, const QString &msg);
|
|
#endif // COMMON_H
|