drogon/examples/simple_example/api_Attachment.h

24 lines
897 B
C
Raw Normal View History

2018-09-07 01:53:37 +00:00
#pragma once
#include <drogon/HttpController.h>
2018-09-07 01:53:37 +00:00
using namespace drogon;
namespace api
{
class Attachment : public drogon::HttpController<Attachment>
2018-10-14 07:56:54 +00:00
{
2019-01-02 10:49:37 +00:00
public:
METHOD_LIST_BEGIN
//use METHOD_ADD to add your custom processing function here;
2019-03-06 07:57:05 +00:00
METHOD_ADD(Attachment::get, "", Get); //Path is '/api/attachment'
2019-01-02 10:49:37 +00:00
METHOD_ADD(Attachment::upload, "/upload", Post);
METHOD_ADD(Attachment::download, "/download", Get);
2019-01-02 10:49:37 +00:00
METHOD_LIST_END
//your declaration of processing function maybe like this:
void get(const HttpRequestPtr &req,
const std::function<void(const HttpResponsePtr &)> &callback);
void upload(const HttpRequestPtr &req,
const std::function<void(const HttpResponsePtr &)> &callback);
void download(const HttpRequestPtr &req,
const std::function<void(const HttpResponsePtr &)> &callback);
2018-10-14 07:56:54 +00:00
};
} // namespace api