2016-02-16 10:45:19 -05:00

11 lines
119 B
C++

#include <QObject>
namespace bar {
class foo: public QObject {
Q_OBJECT
public:
foo();
~foo();
};
}