Из этой статьи http://habrahabr.ru/post/252215/
Есть код
class MyApplication : public cppcms::application
{
public:
explicit MyApplication(cppcms::service &service) :
cppcms::application(service)
{
dispatcher().assign("/file/\\d+", &MyApplication::handleFile, this, 1);
mapper().assign("/file", "/file/{1}");
}
void handleFile(std::string fileNo)
{
//тут обрабатываем запрос
}
};
Почему не void handleFile(const std::string &fileNo)
?