23 lines
424 B
C++
23 lines
424 B
C++
//
|
|
// Created by fly on 2021/12/17.
|
|
//
|
|
|
|
#ifndef REGISTRYCENTER_SERVICESTATUS_H
|
|
#define REGISTRYCENTER_SERVICESTATUS_H
|
|
|
|
#include <rep_ServiceStatus_source.h>
|
|
|
|
|
|
class ServiceStatus : public ServiceStatusSource {
|
|
Q_OBJECT
|
|
public:
|
|
explicit ServiceStatus(QObject *parent = nullptr);
|
|
|
|
~ServiceStatus() override;
|
|
|
|
void reportStatus(QString appId, QString appName) override;
|
|
};
|
|
|
|
|
|
#endif //REGISTRYCENTER_SERVICESTATUS_H
|