00001 #ifndef VIS_FRAMEWORK_BASE_VIS_APPEARANCE_SERVICE_H 00002 # define VIS_FRAMEWORK_BASE_VIS_APPEARANCE_SERVICE_H 00003 00004 //<<<<<< INCLUDES >>>>>> 00005 00006 # include "Iguana/Framework/interface/IgStateElement.h" 00007 00008 //<<<<<< PUBLIC DEFINES >>>>>> 00009 //<<<<<< PUBLIC CONSTANTS >>>>>> 00010 //<<<<<< PUBLIC TYPES >>>>>> 00011 //<<<<<< PUBLIC VARIABLES >>>>>> 00012 //<<<<<< PUBLIC FUNCTIONS >>>>>> 00013 //<<<<<< CLASS DECLARATIONS >>>>>> 00014 00015 class VisAppearanceService : public IgStateElement 00016 { 00017 IG_DECLARE_STATE_ELEMENT (VisAppearanceService); 00018 public: 00019 VisAppearanceService (IgState *state); 00020 ~VisAppearanceService (void); 00021 // implicit copy constructor 00022 // implicit assignment operator 00023 // implicit destructor 00024 const std::string configuration (void) const; 00025 void setConfiguration (const std::string config); 00026 00027 private: 00028 IgState *m_state; 00029 std::string m_config; 00030 }; 00031 00032 //<<<<<< INLINE PUBLIC FUNCTIONS >>>>>> 00033 //<<<<<< INLINE MEMBER FUNCTIONS >>>>>> 00034 00035 inline const std::string 00036 VisAppearanceService::configuration (void) const 00037 { return m_config; } 00038 00039 #endif // VIS_FRAMEWORK_BASE_VIS_APPEARANCE_SERVICE_H