www.pudn.com > several_kinds_Histogram.rar > ACCUHistogram.h


#ifndef ACCUHISTOGRAM 
#define ACCUHISTOGRAM 
 
 
#if _MSC_VER > 1000 
#pragma once 
#endif // _MSC_VER > 1000 
 
#include"Histogram.h" 
class ACCUHistogram:public Histogram 
{ 
 
public: 
	ACCUHistogram(){} 
	~ACCUHistogram() {} 
private: 
	bool ExtractHistogram(); 
}; 
#endif