00001 #ifndef CUTVI_H 00002 #define CUTVI_H 00003 //---------------------------------- 00005 /*! 00006 All selections of the program should inherit from this class.<br> 00007 The pure virtual method apply() returns true/false if 00008 the cut is or is not fulfill. 00009 */ 00010 //------------------------------------ 00011 // JA Hernando, Santa Cruz, CA, 05/15/00 00012 //------------------------------------ 00013 //#################################### 00014 class cutVI 00015 //#################################### 00016 { 00017 public: 00018 00020 cutVI() {} 00022 virtual ~cutVI() {} 00023 00025 virtual bool apply() = 0; 00026 }; 00027 #endif