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 "array_2d.h"
9
10namespace taichi {
11template <int dim>
12class IndexND;
13
14template <int dim>
15class RegionND;
16
17template <int dim, typename T>
18class ArrayND;
19
20} // namespace taichi
21