You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
329 B
20 lines
329 B
#ifndef LOwnDotUnderscore_HPP
|
|
#define LOwnDotUnderscore_HPP
|
|
|
|
#include <QObject>
|
|
|
|
// Object source comes with a .moc and a _moc include
|
|
class OwnDotUnderscorePrivate;
|
|
class OwnDotUnderscore : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
OwnDotUnderscore();
|
|
~OwnDotUnderscore();
|
|
|
|
private:
|
|
OwnDotUnderscorePrivate* const d;
|
|
};
|
|
|
|
#endif
|