// Copyright (C) 2018 Ford Motor Company // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only #ifndef MYTESTSERVER_H #define MYTESTSERVER_H #include #include #include #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; bool next() override; void testEnumParamsInSlots(Enum1 enumSlotParam, bool slotParam2, int __repc_variable_1) override; Q_SIGNALS: void quitApp(); void nextStep(); }; #endif // MYTESTSERVER_H