1 /**********************************************************
2  * Version $Id$
3  *********************************************************/
4 /*******************************************************************************
5     CombineGrids.h
6     Copyright (C) Victor Olaya
7 
8     This program is free software; you can redistribute it and/or modify
9     it under the terms of the GNU General Public License as published by
10     the Free Software Foundation; either version 2 of the License, or
11     (at your option) any later version.
12 
13     This program is distributed in the hope that it will be useful,
14     but WITHOUT ANY WARRANTY; without even the implied warranty of
15     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16     GNU General Public License for more details.
17 
18     You should have received a copy of the GNU General Public License
19     along with this program; if not, write to the Free Software
20     Foundation, Inc., 51 Franklin Street, 5th Floor, Boston, MA 02110-1301, USA
21 *******************************************************************************/
22 
23 #if _MSC_VER > 1000
24 #pragma once
25 #endif // _MSC_VER > 1000
26 
27 #include "MLB_Interface.h"
28 
29 class CCombineGrids : public CSG_Tool_Grid
30 {
31 public:
32 	CCombineGrids(void);
33 	virtual ~CCombineGrids(void);
34 
Get_MenuPath(void)35 	virtual CSG_String		Get_MenuPath	(void)	{	return( _TL("A:Grid|Values") );	}
36 
37 
38 protected:
39 
40 	virtual bool			On_Execute		(void);
41 
42 };
43