C++ Library Extensions 2022.12.09
To help learn modern C++ programming
tpf_container.hpp
Go to the documentation of this file.
1
12#ifndef _TPF_CONTAINER_HPP
13#define _TPF_CONTAINER_HPP
14
15#ifndef NOMINMAX
16#define NOMINMAX
17#endif
18
19#ifdef _MSVC_LANG
20 #if _MSVC_LANG < 201703L
21 #error This libary requires C++17 Standard (Visual Studio 2017).
22 #endif
23#else
24
25 #if __cplusplus < 201703
26 #error This library requires C++17 Standard (GNU g++ version 8.0 or clang++ version 8.0 above)
27 #endif // end of __cplusplus
28
29#endif // end of _MSVC_LANG
30
31#include <tpf_types.hpp>
32
33namespace tpf
34{
35 namespace container
36 {
37
38 } // end of namespace container
39
40} // end of namespace tpf
41
42#endif // end of file _TPF_CONTAINER_HPP
Includes subnamespace conversion.
Definition: 31-visit.cpp:7
Type functions are implemented.