dmpserverapi.cpp
706 Bytes
/**************************************************************************
* file: dmpserverapi.cpp
* Author: wanzhongping
* Date: 2021-11-01 15:11:43
* Email: zhongpingw@chinadci.com
* copyright: 广州城市信息研究所有限公司
***************************************************************************/
#include "dmpserverapi.h"
#include <boost/regex.hpp>
#include <boost/lexical_cast.hpp>
bool DmpServerApi::accept(const std::string &url)
{
//不区分大小写
boost::regex reg(path(), boost::regex_constants::icase);
if(boost::regex_match(url.c_str(), reg))
{
return true;
}
return false;
}