15 lines
146 B
C++
Raw Normal View History

2020-02-01 23:06:01 +01:00
#ifndef Second_HPP
#define Second_HPP
#include <QObject>
class Second : public QObject
{
Q_OBJECT
public:
Second();
~Second();
};
#endif