| 12345678910111213141516171819202122 |
- #ifndef HOSTSAPI_H
- #define HOSTSAPI_H
- #include <QObject>
- #include <optional>
- namespace TC {
- class HostsApi : public QObject
- {
- Q_OBJECT
- public:
- explicit HostsApi(QObject *parent = nullptr);
- QJsonArray get();
- QString url;
- QByteArray sendData;
- };
- } // namespace TC
- #endif // HOSTSAPI_H
|