View on GitHub

Vistle

Distributed Data-parallel Scientific Visualization in VR

dimensions.h
Go to the documentation of this file.
1#ifndef DIMENSIONS_H
2#define DIMENSIONS_H
3
4#include <boost/mpl/vector.hpp>
5#include <boost/mpl/vector_c.hpp>
6#include <boost/mpl/find.hpp>
7
8namespace vistle {
9
10typedef boost::mpl::vector_c<int, 1, 2, 3, 4> Dimensions;
11const int MaxDimension = 4;
12
13} // namespace vistle
14
15#endif
Definition: allobjects.cpp:30
const int MaxDimension
Definition: dimensions.h:11
boost::mpl::vector_c< int, 1, 2, 3, 4 > Dimensions
Definition: dimensions.h:10