mirror of
https://github.com/cmclark00/retro-imager.git
synced 2025-05-19 00:15:21 +01:00
23 lines
353 B
C
23 lines
353 B
C
|
#ifndef NETWORKMANAGERAPI_H
|
||
|
#define NETWORKMANAGERAPI_H
|
||
|
|
||
|
/*
|
||
|
* SPDX-License-Identifier: Apache-2.0
|
||
|
* Copyright (C) 2022 Raspberry Pi Ltd
|
||
|
*/
|
||
|
|
||
|
#include <QObject>
|
||
|
|
||
|
class NetworkManagerApi : public QObject
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
explicit NetworkManagerApi(QObject *parent = nullptr);
|
||
|
QString getPSK();
|
||
|
|
||
|
signals:
|
||
|
|
||
|
};
|
||
|
|
||
|
#endif // NETWORKMANAGERAPI_H
|