00001 /* 00002 * CLayoutManager.h 00003 * 00004 * Created on: 06.05.2010 00005 * Author: vdv 00006 */ 00007 00008 #ifndef LIBGUI_ILAYOUTMANAGER_H_ 00009 #define LIBGUI_ILAYOUTMANAGER_H_ 00010 00011 class CComponent; 00012 00016 /*abstract*/class ILayoutManager 00017 { 00018 public: 00019 ILayoutManager(); 00020 ~ILayoutManager(); 00025 virtual void DoLayout(CComponent* component) = 0; 00026 }; 00027 00028 #endif /* LIBGUI_ILAYOUTMANAGER_H_ */