paraview-glance
Version:
Web application for Visualizing Scientific and Medical datasets
28 lines (27 loc) • 636 B
JavaScript
"use strict";
const Int8 = 'int8_t';
const UInt8 = 'uint8_t';
const Int16 = 'int16_t';
const UInt16 = 'uint16_t';
const Int32 = 'int32_t';
const UInt32 = 'uint32_t';
const Int64 = 'int64_t';
const UInt64 = 'uint64_t';
const SizeValueType = UInt64;
const IdentifierType = SizeValueType;
const IndexValueType = Int64;
const OffsetValueType = Int64;
module.exports = {
Int8: Int8,
UInt8: UInt8,
Int16: Int16,
UInt16: UInt16,
Int32: Int32,
UInt32: UInt32,
Int64: Int64,
UInt64: UInt64,
SizeValueType: SizeValueType,
IdentifierType: IdentifierType,
IndexValueType: IndexValueType,
OffsetValueType: OffsetValueType
};