OSSIA
Open Scenario System for Interactive Application
Loading...
Searching...
No Matches
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
12namespace ossia
13{
19template <typename T>
20using ptr_container
21 = std::vector<std::shared_ptr<T>, std::allocator<std::shared_ptr<T>>>;
22template <typename T, std::size_t N>
23using small_ptr_container = ossia::small_vector<std::shared_ptr<T>, N>;
24}
Definition git_info.h:7