NIREP

DeleteSpatialDataAction.h

Go to the documentation of this file.
00001 //Author: Jeffrey Hawley
00002 //Purpose: Allow a way to 
00003 
00004 
00005 #pragma once
00006 #ifndef _DELETE_SPATIAL_DATA_ACTION_H_
00007 #define _DELETE_SPATIAL_DATA_ACTION_H_
00008 
00009 class Interface;
00010 
00011 class DeleteSpatialDataAction
00012 {
00013 public:
00014   DeleteSpatialDataAction();
00015   ~DeleteSpatialDataAction();
00016   void SetInterface(Interface *i);
00017   void SetRowCol(int r, int c);
00018   void Delete();
00019 private:
00020   Interface *InterfaceParent;
00021   int row;
00022   int col;
00023 };
00024 
00025 #endif
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Defines