View on GitHub
Vistle
Distributed Data-parallel Scientific Visualization in VR
Overview
Architecture
API
Publications
Gallery
core
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
7
namespace
vistle
{
8
9
#ifdef VISTLE_INDEX_64BIT
10
typedef
uint64_t
Index
;
11
typedef
int64_t
SIndex
;
12
#else
13
typedef
uint32_t
Index
;
14
typedef
int32_t
SIndex
;
15
#endif
16
17
const
Index
InvalidIndex
= ~(
Index
)(0);
18
19
}
// namespace vistle
20
21
#endif
vistle
Definition:
allobjects.cpp:30
vistle::SIndex
int32_t SIndex
Definition:
index.h:14
vistle::InvalidIndex
const Index InvalidIndex
Definition:
index.h:17
vistle::Index
uint32_t Index
Definition:
index.h:13