View on GitHub

Vistle

Distributed Data-parallel Scientific Visualization in VR

index.h
Go to the documentation of this file.
1#ifndef INDEX_H
2#define INDEX_H
3
4#include <cstdlib>
5#include <cinttypes>
6
7namespace vistle {
8
9#ifdef VISTLE_INDEX_64BIT
10typedef uint64_t Index;
11typedef int64_t SIndex;
12#else
13typedef uint32_t Index;
14typedef int32_t SIndex;
15#endif
16
17const Index InvalidIndex = ~(Index)(0);
18
19} // namespace vistle
20
21#endif
Definition: allobjects.cpp:30
int32_t SIndex
Definition: index.h:14
const Index InvalidIndex
Definition: index.h:17
uint32_t Index
Definition: index.h:13