NIREP
|
00001 //Figures out the relative overlap. 00002 00003 #pragma once 00004 #ifndef __nirepRO_H_ 00005 #define __nirepRO_H_ 00006 00007 #include "NIREPStatistics.h" 00008 #include "EvaluatorList/EvaluatorList.h" 00009 00010 class NIREPRelativeOverlap : public NIREPStatistics 00011 { 00012 public: 00013 // Constructor with Evaluator reference 00014 NIREPRelativeOverlap(NIREPEvaluator* eval) 00015 { this->evaluator = eval; }; 00016 00017 // Destructor 00018 ~NIREPRelativeOverlap() {}; 00019 00020 // Implementation of the virtual function 00021 // Relative Overlap 00022 virtual TextTable ComputeStatistic(const std::vector<std::string>& arg, DisplayDescription * displayDescription); 00023 00024 protected: 00025 // Default constructor 00026 NIREPRelativeOverlap() {}; 00027 00028 }; 00029 00030 #endif // __nirepRO_H_