blob: 82453635ada82673909f5591349b1d3605b4c522 (
plain)
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
|
// Copyright (C) 2017 Ford Motor Company
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
#ifndef MYTESTSERVER_H
#define MYTESTSERVER_H
#include <QTimer>
#include <QtRemoteObjects/qremoteobjectnode.h>
#include <QtRemoteObjects/qremoteobjectsource.h>
#include "rep_MyInterface_source.h"
class MyTestServer : public MyInterfaceSimpleSource
{
Q_OBJECT
public:
MyTestServer(QObject *parent = nullptr);
~MyTestServer() override;
public Q_SLOTS:
bool start() override;
bool stop() override;
bool quit() override;
void testEnumParamsInSlots(Enum1 enumSlotParam, bool slotParam2, int __repc_variable_1) override;
void testExtPODListSlot(const QList<ExtPOD> &l) override;
Q_SIGNALS:
void quitApp();
};
#endif // MYTESTSERVER_H
|