12 lines
124 B
C++
12 lines
124 B
C++
#ifndef NOTCH_H
|
|
#define NOTCH_H
|
|
|
|
#include <QObject>
|
|
|
|
class Notch : public QObject{
|
|
Q_OBJECT
|
|
public:
|
|
Notch();
|
|
};
|
|
|
|
#endif
|