FOSSology  4.4.0
Open Source License Compliance by Open Source Software
regex.hpp
1 /*
2  SPDX-FileCopyrightText: © 2014 Siemens AG
3  Author: Daniele Fognini, Cedric Bodet, Johannes Najjar
4 
5  SPDX-License-Identifier: GPL-2.0-only
6 */
7 
8 #ifndef REGEX_HPP_
9 #define REGEX_HPP_
10 
11 #define USEBOOST
12 #ifdef USEBOOST
13 
14 #include <boost/regex.hpp>
15 
22 namespace rx = boost;
23 #else
24  #include <regex>
25  namespace rx = std;
26 #endif
27 
28 
29 #endif /* REGEX_HPP_ */