aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/blackbox/testdata/lotsofdots/object.narf.h
blob: bb1868cc076f193f4868d8fb36b53fd9f04d239f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef OBJECT_H
#define OBJECT_H
#include <QObject>

class ObjectNarf : public QObject
{
    Q_OBJECT
public:
    ObjectNarf(QObject *parent = 0);
};

#endif