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