OSSIA
Open Scenario System for Interactive Application
ptr_container.hpp
Go to the documentation of this file.
1 #pragma once
2 #include <ossia/detail/config.hpp>
3 
4 #include <ossia/detail/small_vector.hpp>
5 
6 #include <memory>
7 #include <vector>
8 
12 namespace ossia
13 {
19 template <typename T>
20 using ptr_container
21  = std::vector<std::shared_ptr<T>, std::allocator<std::shared_ptr<T>>>;
22 template <typename T, std::size_t N>
23 using small_ptr_container = ossia::small_vector<std::shared_ptr<T>, N>;
24 }
Definition: git_info.h:7