Main Page | Modules | Namespace List | Class Hierarchy | Class List | File List | Namespace Members | Class Members | File Members | Related Pages
hugin1/hugin/StitcherPanel.h
Go to the documentation of this file.00001 // -*- c-basic-offset: 4 -*- 00024 #ifndef _STITCHERPANEL_H 00025 #define _STITCHERPANEL_H 00026 00027 #include "PT/Panorama.h" 00028 00032 class StitcherPanel : public wxPanel 00033 { 00034 public: 00035 00036 StitcherPanel(wxWindow* parent, wxWindowID id, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = 0, const wxString& name = wxPanelNameStr) 00037 : wxPanel(parent, id, pos, size, style, name) 00038 { }; 00041 virtual ~StitcherPanel() {}; 00042 00044 virtual bool Stitch(const PT::Panorama & pano, 00045 PT::PanoramaOptions opts) = 0; 00046 private: 00047 00048 }; 00049 00050 00051 00052 #endif // _STITCHERPANEL_H
1.3.9.1