SOIL C++
C++ Unified Device Interface
Types.h
Go to the documentation of this file.
1
8#pragma once
9#include "Time.h"
10#include "Enum.h"
11namespace SOIL
12{
18 typedef int64_t INT;
19
26 typedef double DOUBLE;
27
33 typedef bool BOOL;
34
40 typedef std::string STRING;
41
47 typedef Enum ENUM;
48
54 typedef Time TIME;
55
61 typedef std::vector<unsigned int> DIMENSION;
62
63
64}
SOIL Enum Datatype.
Definition: Enum.h:16
SOIL Time.
Definition: Time.h:13
Type definitions.
Definition: Container.h:7
Time TIME
SOIL Time.
Definition: Types.h:54
double DOUBLE
SOIL Double.
Definition: Types.h:26
Enum ENUM
SOIL Enum.
Definition: Types.h:47
std::string STRING
SOIL String.
Definition: Types.h:40
std::vector< unsigned int > DIMENSION
SOIL Dimension.
Definition: Types.h:61
bool BOOL
SOIL Boolean.
Definition: Types.h:33
int64_t INT
SOIL Integer.
Definition: Types.h:18