hej is hosted by Hepforge, IPPP Durham
HEJ 2  2.0
High energy resummation for hadron colliders
optional.hh
Go to the documentation of this file.
1 
11 #pragma once
12 
13 #if __cplusplus <= 201402L
14 #include <boost/optional.hpp>
15 #else
16 #include <optional>
17 #endif
18 
19 namespace HEJ{
20 
21 #if __cplusplus <= 201402L
22  template<typename T>
23  using optional = boost::optional<T>;
24 #else
25  template<typename T>
26  using optional = std::optional<T>;
27 #endif
28 }
Main HEJ 2 Namespace.
Definition: mainpage.dox:1
boost::optional< T > optional
Definition: optional.hh:23