histo.h

来自「signal-processing.rar信号处理demo原码」· C头文件 代码 · 共 49 行

H
49
字号
/*
//
//               INTEL CORPORATION PROPRIETARY INFORMATION
//  This software is supplied under the terms of a license agreement or
//  nondisclosure agreement with Intel Corporation and may not be copied
//  or disclosed except in accordance with the terms of that agreement.
//        Copyright(c) 1999-2006 Intel Corporation. All Rights Reserved.
//
*/

// Histo.h: interface for the CHisto class.
//
// class CHisto provides history information for Demo document
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_HISTO_H__7F5953C5_E802_4F6F_86C0_12C15969A72A__INCLUDED_)
#define AFX_HISTO_H__7F5953C5_E802_4F6F_86C0_12C15969A72A__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

#include "Func.h"

class CVector;

class CHisto : public CStringList  
{
public:
   CHisto();
   virtual ~CHisto();

   void Init(CString title) { RemoveAll(); AddTail(title);}
   void AddFuncString(CFunc func, CString funcParms = _T(""), CString funcInfo = _T(""), 
                      double perf = 0, CString libSuffix = _T(""), CString perfUnit = _T(""));

   void LastFunc(CFunc func) { m_LastFunc = func;}
   CFunc LastFunc() { return m_LastFunc;}
   void LastVec2(CString name) { m_LastVec2 = name;}
   CString LastVec2() { return m_LastVec2;}
protected:
   CFunc   m_LastFunc;
   CString m_LastVec2;

};

#endif // !defined(AFX_HISTO_H__7F5953C5_E802_4F6F_86C0_12C15969A72A__INCLUDED_)

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?