15 lines
146 B
C++
15 lines
146 B
C++
|
#ifndef Second_HPP
|
||
|
#define Second_HPP
|
||
|
|
||
|
#include <QObject>
|
||
|
|
||
|
class Second : public QObject
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
Second();
|
||
|
~Second();
|
||
|
};
|
||
|
|
||
|
#endif
|