1/*******************************************************************************
2 Copyright (c) The Taichi Authors (2016- ). All Rights Reserved.
3 The use of this software is governed by the LICENSE file.
4*******************************************************************************/
5
6#pragma once
7
8#include "taichi/common/core.h"
9
10namespace taichi {
11
12template <int dim>
13class IndexND;
14
15template <int dim>
16using TIndex = IndexND<dim>;
17
18template <int dim>
19class RegionND;
20
21template <int dim>
22using TRegion = RegionND<dim>;
23
24template <int dim, typename T>
25class ArrayND;
26
27template <typename T, int dim>
28using TArray = ArrayND<dim, T>;
29
30} // namespace taichi
31