~aleteoryx/muditaos

ref: 9ce0ece6a83184f9b14c16d946b7171032369279 muditaos/module-services/service-desktop/endpoints/restore/RestoreEndpoint.hpp -rw-r--r-- 363 bytes
9ce0ece6 — Bartek Cichocki [EGD-3502] reworked endpoints 5 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include "Endpoint.hpp"
#include "ParserUtils.hpp"
#include "ServiceDesktop.hpp"

using namespace ParserStateMachine;

class RestoreEndpoint : public Endpoint
{
  public:
    RestoreEndpoint(sys::Service *ownerServicePtr) : Endpoint(ownerServicePtr)
    {
        debugName = "RestoreEndpoint";
    }
    auto handle(Context &context) -> std::string override;
};