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