2022-05-10 10:06:48 +00:00
|
|
|
// Copyright (C) 2016 Alex Trotsenko <alex1973tr@gmail.com>
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
2014-09-24 14:31:33 +00:00
|
|
|
|
|
|
|
#ifndef TIMEPROVIDER_H
|
|
|
|
#define TIMEPROVIDER_H
|
|
|
|
|
|
|
|
#include "provider.h"
|
|
|
|
|
|
|
|
class TimeProvider : public Provider
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
explicit TimeProvider(QObject *parent = nullptr);
|
|
|
|
|
2017-09-18 08:36:49 +00:00
|
|
|
void readDatagram(QSctpSocket &from, const QByteArray &ba) override;
|
2014-09-24 14:31:33 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|