www.pudn.com > cad3d.zip > IMainFrame.h


/***************************************************************************
                          IMainFrame.h  -  description
                             -------------------
    begin                : Wed Apr 3 2002
    copyright            : (C) 2002 by Martin Marinov
    email                : martin_marinov@hotmail.com
 ***************************************************************************/

/***************************************************************************
 *                                                                         *
 *   This program is free software; you can redistribute it and/or modify  *
 *   it under the terms of the GNU General Public License as published by  *
 *   the Free Software Foundation; either version 2 of the License, or     *
 *   (at your option) any later version.                                   *
 *                                                                         *
 ***************************************************************************/
#ifndef __IMainFrame_h__
#define __IMainFrame_h__

class wxWindow;

class IMainFrame
{
public:
	virtual wxWindow*		GetNavigationViewParentPtr() = 0;
	
	virtual wxWindow*		GetSceneWindowParentPtr() = 0;
	virtual void			SetSceneWindow(wxWindow* pSceneWindow) = 0;			
	virtual wxWindow*		GetSceneWindowPtr() = 0;
};

#endif// __IMainFrame_h__