Support Class Library
A set of tools providing classes and utility
literals.h
Go to the documentation of this file.
1 #pragma once
2 #include <chrono>
3 #include <complex>
4 #include <string>
5 
6 namespace scl{
7  namespace alias{
8 #ifdef SCL_CPP14
9  using std::literals::complex_literals;
10  using std::literals::chrono_literals;
11  using std::literals::string_literals;
12 #endif
13 
14 #ifdef SCL_CPP17
15  using std::literals::string_view_literals;
16 #endif
17  }
18 }
Global namespace of the SCL.
Definition: alias.hpp:3