00001 #ifndef ABSTRACTEDITOR_H 00002 #define ABSTRACTEDITOR_H 00003 00004 #include "stdafx.h" 00005 00006 00008 class VAbstractEditor 00009 { 00010 public: 00011 00013 virtual void CreatePanel(CWnd* pParent, CRect rcWindowLocation) = 0; 00014 00016 virtual void EndPanel() = 0; 00017 00018 }; 00019 00020 00021 #endif