24 lines
576 B
C++
24 lines
576 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_SYSTEM_API_H__
|
|
#define __CGI_SYSTEM_API_H__
|
|
|
|
#include "api_handler.h"
|
|
namespace rockchip {
|
|
namespace cgi {
|
|
|
|
class SystemApiHandler : public ApiHandler {
|
|
public:
|
|
SystemApiHandler() = default;
|
|
~SystemApiHandler() = default;
|
|
|
|
virtual void handler(const HttpRequest &Req, HttpResponse &Resp) final;
|
|
};
|
|
|
|
} // namespace cgi
|
|
} // namespace rockchip
|
|
|
|
#endif // __CGI_SYSTEM_API_H__
|