View on GitHub

Vistle

Distributed Data-parallel Scientific Visualization in VR

buffer.h
Go to the documentation of this file.
1#ifndef VISTLE_UTIL_BUFFER_H
2#define VISTLE_UTIL_BUFFER_H
3
4#include "allocator.h"
5#include <vector>
6
7namespace vistle {
8
9using buffer = std::vector<char, allocator<char>>;
10
11}
12#endif
Definition: allobjects.cpp:30
std::vector< char, allocator< char > > buffer
Definition: buffer.h:9