-
Notifications
You must be signed in to change notification settings - Fork 142
Expand file tree
/
Copy pathGridManager.h
More file actions
30 lines (26 loc) · 975 Bytes
/
GridManager.h
File metadata and controls
30 lines (26 loc) · 975 Bytes
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
26
27
28
29
30
# ifndef GRIDMANAGER_H
# define GRIDMANAGER_H
// # include "sgrid.h"
// # include "lGrid.h"
// # include "fGrid.h"
// # include "dGrid.h"
# include "grdtypes.h"
# include "EsriDll.h"
class __declspec( dllexport ) GridManager
{
public:
GridManager();
~GridManager();
DATA_TYPE getGridDataType( const char * filename, GRID_TYPE GridType = USE_EXTENSION );
GRID_TYPE getGridType( const char * filename );
bool canUseEsriGrids();
bool deleteGrid( const char * filename, GRID_TYPE GridType = USE_EXTENSION );
static bool NeedProxyForGrid(CStringW filename, tkGridProxyMode proxyMode, IGrid* grid = NULL);
static CStringW GetProxyLegendName(CStringW filename);
static CStringW GetProxyWorldFileName(CStringW filename);
static CStringW GetProxyName(CStringW filename);
static bool HasValidProxy(CStringW filename);
static CStringW GetOverviewsFilename(CStringW filename);
static bool RemoveImageProxy(CStringW gridFilename);
};
# endif