| 123456789101112131415161718192021 |
- #ifndef CONFIGAPI_H
- #define CONFIGAPI_H
- #include <QObject>
- #include "qvariant.h"
- #include <optional>
- namespace TC {
- class ConfigApi : public QObject
- {
- Q_OBJECT
- public:
- ConfigApi();
- ConfigApi(const QString &name);
- std::optional<QVariant> get();
- QString url;
- QByteArray sendData;
- };
- } // namespace TC
- #endif // CONFIGAPI_H
|