00001 #ifndef IGUANA_FRAMEWORK_IG_REP_H 00002 # define IGUANA_FRAMEWORK_IG_REP_H 00003 00004 //<<<<<< INCLUDES >>>>>> 00005 00006 # include "Iguana/Framework/interface/config.h" 00007 00008 //<<<<<< PUBLIC DEFINES >>>>>> 00009 //<<<<<< PUBLIC CONSTANTS >>>>>> 00010 //<<<<<< PUBLIC TYPES >>>>>> 00011 00012 class IgRepContext; 00013 class IgModel; 00014 00015 //<<<<<< PUBLIC VARIABLES >>>>>> 00016 //<<<<<< PUBLIC FUNCTIONS >>>>>> 00017 //<<<<<< CLASS DECLARATIONS >>>>>> 00018 00052 class IGUANA_FRAMEWORK_API IgRep 00053 { 00054 public: 00055 virtual ~IgRep (void); 00056 00057 virtual IgRepContext * context (void) const = 0; 00058 virtual IgModel * model (void) const = 0; 00059 00060 protected: 00061 friend class IgRepContext; 00062 virtual void context (IgRepContext *context) = 0; 00063 }; 00064 00065 //<<<<<< INLINE PUBLIC FUNCTIONS >>>>>> 00066 //<<<<<< INLINE MEMBER FUNCTIONS >>>>>> 00067 00068 #endif // IGUANA_FRAMEWORK_IG_REP_H