CMS 3D CMS Logo

IgView.h

Go to the documentation of this file.
00001 #ifndef IGUANA_STUDIO_IG_VIEW_H
00002 # define IGUANA_STUDIO_IG_VIEW_H
00003 
00004 //<<<<<< INCLUDES                                                       >>>>>>
00005 
00006 # include "Iguana/Studio/interface/config.h"
00007 # include <string>
00008 
00009 //<<<<<< PUBLIC DEFINES                                                 >>>>>>
00010 //<<<<<< PUBLIC CONSTANTS                                               >>>>>>
00011 //<<<<<< PUBLIC TYPES                                                   >>>>>>
00012 
00013 class IgPage;
00014 class IgState;
00015 
00016 //<<<<<< PUBLIC VARIABLES                                               >>>>>>
00017 //<<<<<< PUBLIC FUNCTIONS                                               >>>>>>
00018 //<<<<<< CLASS DECLARATIONS                                             >>>>>>
00019 
00020 class IGUANA_STUDIO_API IgView
00021 {
00022 public:
00023     IgView (IgPage *page);
00024     virtual ~IgView (void);
00025     // implicit copy constructor
00026     // implicit assignment operator
00027     // implicit destructor
00028     
00029     virtual IgState     *state (void);    
00030     IgPage              *page (void);    
00031 
00032     std::string         title (void) const;
00033     void                setTitle (const char *name);
00034     
00035 private:
00036     IgPage              *m_page;
00037     std::string         m_title;    
00038 };
00039 
00040 //<<<<<< INLINE PUBLIC FUNCTIONS                                        >>>>>>
00041 //<<<<<< INLINE MEMBER FUNCTIONS                                        >>>>>>
00042 
00043 #endif // IGUANA_STUDIO_IG_VIEW_H

Generated on Tue Jun 9 17:38:48 2009 for CMSSW by  doxygen 1.5.4