blob: 478955c30a2ddf7786e700384f051f307279f32f [file] [log] [blame]
#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