Files

19 lines
510 B
C++
Raw Permalink Normal View History

2023-07-15 14:19:48 -07:00
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#ifndef DUMMYNETWORKWATCHER_H
#define DUMMYNETWORKWATCHER_H
#include "networkwatcherimpl.h"
class DummyNetworkWatcher final : public NetworkWatcherImpl {
2024-05-08 22:02:02 +01:00
public:
DummyNetworkWatcher(QObject* parent);
~DummyNetworkWatcher();
2023-07-15 14:19:48 -07:00
2024-05-08 22:02:02 +01:00
void initialize() override;
2023-07-15 14:19:48 -07:00
};
#endif // DUMMYNETWORKWATCHER_H