Files
LuckFox-RV1103-1106/project/app/ipcweb/ipcweb-backend/src/event_api.h
T
2023-08-08 20:36:47 +08:00

24 lines
570 B
C++

// Copyright 2019 Fuzhou Rockchip Electronics Co., Ltd. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef __CGI_EVENT_API_H__
#define __CGI_EVENT_API_H__
#include "api_handler.h"
namespace rockchip {
namespace cgi {
class EventApiHandler : public ApiHandler {
public:
EventApiHandler() = default;
~EventApiHandler() = default;
virtual void handler(const HttpRequest &Req, HttpResponse &Resp) final;
};
} // namespace cgi
} // namespace rockchip
#endif // __CGI_EVENT_API_H__