Chombo + EB + MF  3.2
BaseIndex.H
Go to the documentation of this file.
1 #ifdef CH_LANG_CC
2 /*
3  * _______ __
4  * / ___/ / ___ __ _ / / ___
5  * / /__/ _ \/ _ \/ V \/ _ \/ _ \
6  * \___/_//_/\___/_/_/_/_.__/\___/
7  * Please refer to Copyright.txt, in Chombo's root directory.
8  */
9 #endif
10 
11 // ANAG, LBNL
12 
13 #ifndef _BASEINDEX_H_
14 #define _BASEINDEX_H_
15 
16 #include "REAL.H"
17 #include "IntVect.H"
18 #include "SPMD.H"
19 #include "NamespaceHeader.H"
20 
21 /// index for other indicies to inherit
22 /**
23  Aggstencil needed the concept of a unified
24  index. This is it. Not much to it.
25 */
26 class BaseIndex
27 {
28 public:
29 
31  {
32  ;
33  }
34 
35  virtual ~BaseIndex()
36  {
37  ;
38  }
39 };
40 
41 #include "NamespaceFooter.H"
42 #endif
virtual ~BaseIndex()
Definition: BaseIndex.H:35
index for other indicies to inherit
Definition: BaseIndex.H:26
BaseIndex()
Definition: BaseIndex.H:30