00001 #ifndef FOCUS_COMPONENT_INTERFACE_H 00002 #define FOCUS_COMPONENT_INTERFACE_H 00003 00013 #include "componentInterface.h" 00014 00015 00019 class FocusComponentInterface : public ComponentInterface { 00020 public: 00021 virtual ~FocusComponentInterface(void) {} 00022 virtual void beginFocus(void) = 0; 00023 virtual void endFocus(void) = 0; 00024 }; 00025 00026 #endif /* !FOCUS_COMPONENT_INTERFACE_H */ 00027