00001 # ifndef IdentifyComponent_h 00002 # define IdentifyComponent_h IdentifyComponent_h 00003 00004 # include "Component.h" // parent 00005 00006 namespace Conjecture { 00007 class Page; 00008 00016 class IdentifyComponent : public Component { 00017 public: 00018 IdentifyComponent(); 00019 virtual bool execute(Page* page) = 0; 00020 }; 00021 } 00022 00023 # endif // IdentifyComponent_h 00024