#ifndef MEDIAN_H #define MEDIAN_H #include "Estimation.h" using namespace std; // // class Median :public Estimation { public: Median(); ~Median(); double getValue(vector); vector getValue(vector, int); double getValue(int, vector, vector); double getValue(vector, vector); }; #endif