00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021 #ifndef _ITAB_H_
00022 #define _ITAB_H_
00023
00024 #include <boost\shared_ptr.hpp>
00025 #include <QtGui\QWidget>
00026 #include "Scene.h"
00027
00028 namespace TestFrameWork
00029 {
00030
00031 class ITab
00032 {
00033 public:
00034 virtual QWidget* GetWidget(void) const = 0;
00035
00036 virtual void LoadDefaultSceneParameters(const ScenePtr scene) = 0;
00037
00038 protected:
00039 ITab(void){};
00040 virtual ~ITab(void) = 0 {};
00041
00042 };
00043
00044 typedef boost::shared_ptr<ITab> ITabPtr;
00045 typedef std::vector<ITabPtr> ITabVector;
00046
00047 }
00048
00049 #endif