aboutsummaryrefslogtreecommitdiffstats
path: root/example.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'example.cpp')
-rw-r--r--example.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/example.cpp b/example.cpp
index 5491ba2..57f8e09 100644
--- a/example.cpp
+++ b/example.cpp
@@ -42,6 +42,14 @@ int main()
return crow::response(os.str());
});
+ CROW_ROUTE(app,"/add/<int>/<int>")
+ ([](const crow::request& req, crow::response& res, int a, int b){
+ std::ostringstream os;
+ os << a+b;
+ res.send(os.str());
+ res.end();
+ });
+
// Compile error with message "Handler type is mismatched with URL paramters"
//CROW_ROUTE(app,"/another/<int>")
//([](int a, int b){