2010-06-29 17:09:40 +00:00
|
|
|
// -*- C++ -*-
|
|
|
|
/**
|
|
|
|
* \file regexp.h
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
*
|
|
|
|
* \author Peter Kümmel
|
|
|
|
*
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef LYX_REGEXP_H
|
|
|
|
#define LYX_REGEXP_H
|
|
|
|
|
2010-06-30 08:47:41 +00:00
|
|
|
#if defined(LYX_USE_TR1) && defined(LYX_USE_TR1_REGEX)
|
2010-06-30 11:04:30 +00:00
|
|
|
# ifdef _MSC_VER
|
|
|
|
# include <regex>
|
|
|
|
# define match_partial _Match_partial
|
|
|
|
# else
|
|
|
|
# include <tr1/regex>
|
|
|
|
// TODO no match_partial in gcc, how to replace?
|
|
|
|
# define match_partial match_default
|
|
|
|
# endif
|
|
|
|
# define LR_NS std::tr1
|
|
|
|
#else
|
|
|
|
# include <boost/regex.hpp>
|
|
|
|
# define LR_NS boost
|
2010-06-29 17:09:40 +00:00
|
|
|
#endif
|
|
|
|
|
2010-06-30 11:04:30 +00:00
|
|
|
namespace lyx {
|
|
|
|
using LR_NS::regex;
|
|
|
|
using LR_NS::smatch;
|
|
|
|
using LR_NS::regex_replace;
|
|
|
|
using LR_NS::basic_regex;
|
|
|
|
using LR_NS::regex_error;
|
|
|
|
using LR_NS::regex_search;
|
|
|
|
using LR_NS::sregex_iterator;
|
|
|
|
using LR_NS::match_results;
|
|
|
|
|
|
|
|
namespace regex_constants
|
2010-06-29 17:09:40 +00:00
|
|
|
{
|
2010-06-30 11:04:30 +00:00
|
|
|
using namespace LR_NS::regex_constants;
|
|
|
|
using LR_NS::regex_constants::match_flag_type;
|
2010-06-29 17:09:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2010-06-30 11:04:30 +00:00
|
|
|
#undef LR_NS
|
2010-06-29 17:09:40 +00:00
|
|
|
|
|
|
|
#endif
|