| 12345678910111213141516171819202122 |
- #ifndef PROCESSAPI_H
- #define PROCESSAPI_H
- #include <QObject>
- #include <optional>
- namespace TC {
- class ProcessApi : public QObject
- {
- Q_OBJECT
- public:
- ProcessApi();
- ProcessApi(const QJsonArray &array);
- bool post();
- QString url;
- QByteArray sendData;
- };
- } // namespace TC
- #endif // PROCESSAPI_H
|