buffer.h
Go to the documentation of this file.
1 #ifndef TTG_BUFFER_H
2 #define TTG_BUFFER_H
3 
4 #include <memory>
5 
6 #include "ttg/fwd.h"
7 
8 namespace ttg {
9 
10 template<typename T, typename Allocator = std::allocator<std::decay_t<T>>>
11 using Buffer = TTG_IMPL_NS::Buffer<T, Allocator>;
12 
13 } // namespace ttg
14 
15 #endif // TTG_buffer_H
top-level TTG namespace contains runtime-neutral functionality
Definition: keymap.h:8