-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathTestGrids.h
25 lines (22 loc) · 834 Bytes
/
TestGrids.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
//---------------------------------------------------------------------------
// TestGrids
//---------------------------------------------------------------------------
#if !defined(TestGrids_H)
#define TestGrids_H
class clSimManager;
class clGrid;
/**
* Creates a grid and initializes it with values. The two data members are
* called "int" and "float". The grid cell size is 4X6.
* @param p_oSimManager Sim manager.
* @return Created, initialized grid.
*/
clGrid* CreateGrid(clSimManager *p_oSimManager);
/**
* Writes an XML file that will create the sim manager so we can create a
* grid through the proper channels. The plot size is 200X200 m.
* @return Filename just written.
*/
const char* WriteGridXMLFile1();
//---------------------------------------------------------------------------
#endif // TestGrids_H