/** -------------------------------------------------------------------- * @file regex.h * @brief Declaration of miscellaneous regexp functions. * @author Andreas Aardal Hanssen * @date 2002-2005 * ----------------------------------------------------------------- **/ #ifndef regex_h_included #define regex_h_included #include namespace Binc { int regexMatch(const std::string &data_in, const std::string &p_in); } #endif