OpenPose  1.0.0rc2
OpenPose: A Real-Time Multi-Person Key-Point Detection And Multi-Threading C++ Library
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Macros
common.hpp
Go to the documentation of this file.
1 #ifndef OPENPOSE_CORE_COMMON_HPP
2 #define OPENPOSE_CORE_COMMON_HPP
3 
4 // Std library most used classes
5 #include <array>
6 #include <memory> // std::shared_ptr, std::unique_ptr
7 #include <string>
8 #include <vector>
9 // OpenPose most used classes
10 #include <openpose/core/array.hpp>
11 #include <openpose/core/macros.hpp>
12 #include <openpose/core/point.hpp>
16 // Datum at the end, otherwise circular dependency with array, point & rectangle
17 #include <openpose/core/datum.hpp>
18 
19 #endif // OPENPOSE_CORE_COMMON_HPP