/*************************************************** Created by: Venkat on Wed Aug 24 14:33:44 CDT 2005 Modified : Purpose : ****************************************************/ #ifndef _RAWEFFTOOL_HPP_ #define _RAWEFFTOOL_HPP_ #include "eff_utils/EffTool.hpp" #include "eff_utils/EffVal.hpp" #include class eff_utils::Efficiency; class eff_utils::EffInfo; namespace eff_utils { class RawEffTool : public EffTool { public: // Constructor RawEffTool() : EffTool() { ; } RawEffTool( const EffInfo & request) : EffTool( request ) {;} // Destructor ~RawEffTool(); // Return Efficiency EffVal Eff(std::vector vec); }; } #endif // _RAWEFFTOOL_HPP_