Warning, /sdk/licensedigger/autotests/testdata_conversionexamples/file_without_unrecognized_statement.h.origfile is written in an unsupported language. File is not indexed.
0001 /*
0002 Copyright (C) 2020 Jon Doe <mail@example.org>
0003
0004 This it not a real license statement, just something the parser
0005 shall not be able to dect
0006 */
0007
0008 #ifndef FAKE_NOTIFICATIONS_SERVER_H
0009 #define FAKE_NOTIFICATIONS_SERVER_H
0010
0011 #include <QObject>
0012 #include <QHash>
0013 #include <QVariantMap>
0014
0015 class FooItem
0016 {
0017 public:
0018 QString variable;
0019 uint baa;
0020 };
0021
0022 class MyClass : public QObject
0023 {
0024 Q_OBJECT
0025
0026 public:
0027 MyClass(QObject *parent = nullptr);
0028
0029 uint publicInt;
0030 QList<String> someData;
0031
0032 public Q_SLOTS:
0033 uint doSomething(const QString &data);
0034
0035 Q_SIGNALS:
0036 void done();
0037 };
0038
0039 #endif