12 lines
407 B
C++
12 lines
407 B
C++
|
#include "CustomCtrl.h"
|
||
|
//add definition of your processing function here
|
||
|
|
||
|
void CustomCtrl::hello(const HttpRequestPtr &req,
|
||
|
const std::function<void(const HttpResponsePtr &)> &callback,
|
||
|
const std::string &userName) const
|
||
|
{
|
||
|
auto resp = HttpResponse::newHttpResponse();
|
||
|
resp->setBody("<P>" + _greetings + ", " + userName + "</P>");
|
||
|
callback(resp);
|
||
|
}
|