summaryrefslogtreecommitdiffhomepage
path: root/facetracknoir/qt-moc.h
blob: 8ccfffe89635c816483cc97e03f089e00bfdc4af (plain)
1
2
3
4
5
6
7
8
9
10
#include <QObject> 

// this file exists only such that cmake qt automoc is appeased

class AutomocMe : public QObject {
  Q_OBJECT
private:
  virtual void foo() = 0;
  AutomocMe() {}
};