Files
qt-creator/tests/manual/tasking/trafficlight/trafficlight.h
Jarek Kobus 7c0b831391 TaskTree: Implement TrafficLight example
Import from:
https://github.com/qt/qtscxml/tree/dev/examples/scxml/trafficlight-common
and implement it in terms of TaskTree.
The recipe() corresponds to trafficlight.scxml file and implements
the business logic.

Used components: TimeoutTask and BarrierTask.

Change-Id: Ifc08b947388abed8cfc85ba082aaa0b18da0a1d7
Reviewed-by: hjk <hjk@qt.io>
Reviewed-by: <github-actions-qt-creator@cristianadam.eu>
2024-01-11 11:36:06 +00:00

18 lines
348 B
C++

// Copyright (C) 2024 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
#ifndef TRAFFICLIGHT_H
#define TRAFFICLIGHT_H
#include <QWidget>
class GlueInterface;
class TrafficLight final : public QWidget
{
public:
TrafficLight(GlueInterface *iface);
};
#endif // TRAFFICLIGHT_H