15 lines
152 B
C++
15 lines
152 B
C++
#ifndef EXAMPLE_UI_H
|
|
#define EXAMPLE_UI_H
|
|
|
|
#include <QObject>
|
|
|
|
#include "ui_uiA.h"
|
|
|
|
class Example : public QObject
|
|
{
|
|
Q_OBJECT
|
|
Example();
|
|
};
|
|
|
|
#endif
|