GME
13
|
00001 // PendingObjectPosRequest.h: interface for the CPendingObjectPosRequest class. 00002 // 00004 00005 #if !defined(AFX_PENDINGOBJECTPOSREQUEST_H__EBB6D4C1_99EC_4065_8DE0_A3A8917F7D53__INCLUDED_) 00006 #define AFX_PENDINGOBJECTPOSREQUEST_H__EBB6D4C1_99EC_4065_8DE0_A3A8917F7D53__INCLUDED_ 00007 00008 #if _MSC_VER > 1000 00009 #pragma once 00010 #endif // _MSC_VER > 1000 00011 00012 #include "PendingRequest.h" 00013 00014 class CPendingObjectPosRequest : public CPendingRequest 00015 { 00016 public: 00017 void Execute(CGMEView *view); 00018 CPendingObjectPosRequest(CGuiObject *obj, CRect loc, int asp) : object(obj), location(loc), aspect(asp){} 00019 virtual ~CPendingObjectPosRequest(); 00020 00021 CGuiObject * object; 00022 00023 protected: 00024 int aspect; 00025 CRect location; 00026 }; 00027 00028 #endif // !defined(AFX_PENDINGOBJECTPOSREQUEST_H__EBB6D4C1_99EC_4065_8DE0_A3A8917F7D53__INCLUDED_)