-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpqEventSource.h
46 lines (38 loc) · 1.13 KB
/
pqEventSource.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
// SPDX-FileCopyrightText: Copyright (c) Kitware Inc.
// SPDX-FileCopyrightText: Copyright (c) Sandia Corporation
// SPDX-License-Identifier: BSD-3-Clause
#ifndef _pqEventSource_h
#define _pqEventSource_h
#include "QtTestingExport.h"
#include "pqEventTypes.h"
#include <QObject>
class QString;
/// Abstract interface for objects that can supply high-level testing events
class QTTESTING_EXPORT pqEventSource : public QObject
{
Q_OBJECT
public:
pqEventSource(QObject* p)
: QObject(p)
{
}
~pqEventSource() override {}
enum eventReturnFlag
{
SUCCESS,
FAILURE,
DONE
};
/** Retrieves the next available event.
Returns SUCCESS if an event was returned and can be processed,
FAILURE if there was a problem,
DONE, if there are no more events. */
virtual int getNextEvent(
QString& object, QString& command, QString& arguments, int& eventType) = 0;
/** Set the filename for contents.
Returns true for valid file, false for invalid file */
virtual void setContent(const QString& filename) = 0;
/** tell the source to stop feeding in events */
virtual void stop() {}
};
#endif // !_pqEventSource_h