⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 histo.h

📁 Intel开发的IPP库的应用例程
💻 H
字号:
/*
//
//               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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -