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