Welcome to mirror list, hosted at ThFree Co, Russian Federation.

regex.hpp « std - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2f69582440b825d2d98ad4dca155d272e9b3c0c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#pragma once

#if defined(new)
#undef new
#endif

#include <regex>

using std::regex;
using std::regex_match;
using std::regex_search;
using std::sregex_token_iterator;
using std::regex_replace;

#if defined(DEBUG_NEW)
#define new DEBUG_NEW
#endif