亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? ippsdemo.h

?? Intel開發(fā)的IPP庫的應(yīng)用例程
?? 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.
//
*/

// ippsDemo.h : main header file for the ippsDemo application
//
/////////////////////////////////////////////////////////////////////////////

#if !defined(AFX_IPPSDEMO_H__25DD65ED_5261_44EC_8A62_53AC26C08281__INCLUDED_)
#define AFX_IPPSDEMO_H__25DD65ED_5261_44EC_8A62_53AC26C08281__INCLUDED_

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

#ifndef __AFXWIN_H__
   #error include '..\stdafx.h' before including this file for PCH
#endif

#include "demo.h"

class CNewSignal;
class CNewTaps;
class CNewChar;

class CippsDemoDoc;
class CMruMenu;

enum {CPLX_CART, CPLX_POLAR};
enum {VIEW_DEMO, VIEW_TEXT, VIEW_CHAR};

// IPP library indexes
#define LIB_SP  0
#define LIB_CH  1
#define LIB_NUM 2

// CH_CALL macro produces ippCH library call
// (exported library or linked library)
#define CH_CALL(name, params) \
   (DEMO_APP->GetLibHandle(LIB_CH) ? \
      ((typ_##name)DEMO_APP->GetIppProc(#name, LIB_CH)) params : \
      name params)

/////////////////////////////////////////////////////////////////////////////
// CippsDemoApp: application class for IPP Signal Processing Demo
// See ippsDemo.cpp for the implementation of this class
//

class CippsDemoApp : public CDemoApp
{
public:
/////////////////////////////////////////////////////////////////////////////
// Constructor

   CippsDemoApp();

/////////////////////////////////////////////////////////////////////////////
// CDemoApp virtual function overrides

   // GetCopyrightFirstYear returns the year of Demo creation
   virtual int GetCopyrightFirstYear() const { return 1999;}
   // GetDemoTitle returns the name of the Demo that will be set to the title
   // of application and application message boxes
   virtual CString GetDemoTitle() const;
   // GetNumLibs returns the number of used IPP libraries in the Demo. 
   virtual int GetNumLibs() const { return LIB_NUM;}
   // GetLibTitle returns the name of IPP Library with the specified index
   virtual CString GetLibTitle(int idx = 0) const;
   // GetLibPrefix returns the prefix in function names of IPP Library 
   // with the specified index
   virtual CString GetLibPrefix(int idx = 0) const;
   // GetLibVersion returns the version of IPP library with the specified index 
   virtual const IppLibraryVersion* GetLibVersion(int idx = 0) const;

   // LoadProfileSettings is called by CDemoApp::InitInstance.
   // It loads application settings
   virtual void LoadProfileSettings();
   // SaveProfileSettings is called by CDemoApp::InitInstance.
   // It saves application settings
   virtual void SaveProfileSettings();
   // CreateDirector creates new CDirector class that can process any document 
   // by any proper IPP function
   virtual CDirector* CreateDirector() const;
   // CreateDocTemplates creates document templates
   virtual void CreateDocTemplates();

/////////////////////////////////////////////////////////////////////////////
// Doc Managing & Creation 

   // GetNextDoc is used in iteration process for ippsdemo documents
   CippsDemoDoc* GetNextIppsDoc(MY_POSITION& pos) const { 
      return (CippsDemoDoc*)CDemoApp::GetNextDoc(pos);}
   // GetDemoTemplate returns template for document that will be shown in 
   // graphic view at its first appearance
   CDocTemplate* GetDemoTemplate();
   // GetTextTemplate returns template for document that will be shown in 
   // digital view at its first appearance
   CDocTemplate* GetTextTemplate();
   // GetCharTemplate returns template for document that will be shown in 
   // character view at its first appearance
   CDocTemplate* GetCharTemplate();
   // CreateDemoDoc creates document with specified parameters and
   // shows it in graphic view
   CippsDemoDoc* CreateDemoDoc(ppType type, int len, BOOL bMakeVisible = TRUE, CString title = "");
   CippsDemoDoc* CreateDemoDoc(CVector* pVec, BOOL bMakeVisible = TRUE, CString title = "");
   // CreateTextDoc creates document with specified parameters and
   // shows it in digital view
   CippsDemoDoc* CreateTextDoc(ppType type, int len, BOOL bMakeVisible = TRUE, CString title = "");
   CippsDemoDoc* CreateTextDoc(CVector* pVec, BOOL bMakeVisible = TRUE, CString title = "");
   // CreateCharDoc creates document with specified parameters and
   // shows it in character view
   CippsDemoDoc* CreateCharDoc(ppType type, int len, BOOL bMakeVisible = TRUE, CString title = "");
   CippsDemoDoc* CreateCharDoc(CVector* pVec, BOOL bMakeVisible = TRUE, CString title = "");

   // OpenNewDoc opens new user customized document.
   // If newView == VIEW_DEMO then document will be created with signal default
   // parameters and will be shown in graphic view;
   // if newView == VIEW_TEXT then document will be created with taps default
   // parameters and will be shown in digital view
   // if newView == VIEW_CHAR then document will be created with characher default
   // parameters and will be shown in character view
   void OpenNewDoc(BOOL bTaps = FALSE);
   // GetNewSignal returns class creating new document with signal data
   CNewSignal* GetNewSignal () const { return m_pNewSignal ;}
   // GetNewTaps returns class creating new document with taps data
   CNewTaps*   GetNewTaps   () const { return m_pNewTaps   ;}
   // GetNewChar returns class creating new document with character data
   CNewChar*   GetNewChar   () const { return m_pNewChar   ;}
   // NewView returns weather new document should be shown in signal, digital or character view
   int NewView()  const { return m_NewView;}
   // NewIsEmpty returns weather new document data doesn't need initialization
   BOOL   NewIsEmpty() const { return m_NewIsEmpty;}
   // GetNewType returns default vector type of new empty document
   ppType GetNewType   () const { return m_NewType   ;}
   // GetNewLength returns default vector length of new empty document
   int    GetNewLength () const { return m_NewLength ;}

/////////////////////////////////////////////////////////////////////////////
// Attributes

   // GetXAxis returns weather x axis should be shown in graphic vew
   BOOL   GetXAxis     () const { return m_XAxis     ;}
   // GetYAxis returns weather y axis should be shown in graphic vew
   BOOL   GetYAxis     () const { return m_YAxis     ;}
   // GetGrid returns weather grid should be shown in graphic vew
   BOOL   GetGrid      () const { return m_Grid      ;}

/////////////////////////////////////////////////////////////////////////////
// Providing Drag & Drop Operations on Demo applications

   virtual CDemoDoc* CreateDropDoc(const char* pData, int DropObject);
   virtual BOOL ValidDropHeader(const char* pData, int DropObject) const;

// Overrides
   // ClassWizard generated virtual function overrides
   //{{AFX_VIRTUAL(CippsDemoApp)
   //}}AFX_VIRTUAL


// Implementation
   //{{AFX_MSG(CippsDemoApp)
   afx_msg void OnFileNew();
   afx_msg void OnFileNewSignal();
   afx_msg void OnFileNewTaps();
   afx_msg void OnFileNewChar();

   afx_msg void OnUpdateViewXaxis(CCmdUI* pCmdUI);
   afx_msg void OnUpdateViewYaxis(CCmdUI* pCmdUI);
   afx_msg void OnViewXaxis();
   afx_msg void OnViewYaxis();
   afx_msg void OnUpdateViewGrid(CCmdUI* pCmdUI);
   afx_msg void OnViewGrid();

   afx_msg void OnUpdateZoomAll(CCmdUI* pCmdUI);
   afx_msg void OnZoomAll();

   afx_msg void OnOptColor();
   //}}AFX_MSG
   DECLARE_MESSAGE_MAP()

protected:
   CNewSignal* m_pNewSignal;
   CNewTaps*   m_pNewTaps;
   CNewChar*   m_pNewChar;
   BOOL   m_NewIsEmpty;
   int    m_NewView;
   ppType m_NewType;
   int    m_NewLength;
   BOOL m_XAxis;
   BOOL m_YAxis;
   BOOL m_Grid;

   CippsDemoDoc* CreateNewDoc(CDocTemplate* pTpl, ppType type, int len, 
                          BOOL bMakeVisible, CString title) ;
public:
};

// Macro DEMO_APP produces pointer to ipps Demo application
#undef DEMO_APP
#define DEMO_APP ((CippsDemoApp*)AfxGetApp())
#undef ACTIVE_DOC
#define ACTIVE_DOC (ACTIVE_FRAME ? (CippsDemoDoc*)(ACTIVE_FRAME->GetActiveDocument()) : NULL)

/////////////////////////////////////////////////////////////////////////////

//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.

#endif // !defined(AFX_IPPSDEMO_H__25DD65ED_5261_44EC_8A62_53AC26C08281__INCLUDED_)

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
26uuu亚洲婷婷狠狠天堂| 欧美精品tushy高清| 国产精品不卡一区| 成人免费黄色在线| 亚洲欧洲综合另类| 欧美色欧美亚洲另类二区| 石原莉奈在线亚洲二区| 欧美精品一区二区久久久| 国产精品亚洲人在线观看| 1000部国产精品成人观看| 99国产精品99久久久久久| 亚洲国产精品久久不卡毛片| 欧美老人xxxx18| 国产美女视频91| 中文字幕一区二区在线播放| 欧美日韩一区高清| 国模一区二区三区白浆| 亚洲视频综合在线| 欧美一区二区在线观看| 豆国产96在线|亚洲| 亚洲午夜精品在线| 国产性色一区二区| 欧美特级限制片免费在线观看| 日本不卡123| 国产精品少妇自拍| 欧美丰满嫩嫩电影| 成人av在线资源网| 亚洲mv在线观看| 欧美国产成人精品| 在线播放日韩导航| 成人av集中营| 麻豆91精品视频| 亚洲狼人国产精品| 久久天天做天天爱综合色| 欧美最猛黑人xxxxx猛交| 国产综合久久久久久鬼色| 亚洲一区成人在线| 国产精品每日更新在线播放网址 | 亚洲福利电影网| 久久久久久久久久电影| 欧美日韩国产小视频在线观看| 国产不卡在线一区| 麻豆精品一区二区三区| 一卡二卡三卡日韩欧美| 欧美经典一区二区三区| 91精品国产乱码| 一区二区三区在线观看视频| 久久久亚洲欧洲日产国码αv| 欧美日韩国产一区二区三区地区| 成人99免费视频| 青青草国产精品97视觉盛宴| 日韩理论片中文av| 国产亚洲欧美在线| 26uuu国产一区二区三区| 欧美日韩免费观看一区三区| 色成年激情久久综合| 成人高清视频在线观看| 国产成人在线视频播放| 国产综合色视频| 久久99久国产精品黄毛片色诱| 亚洲国产成人av网| 亚洲尤物在线视频观看| 亚洲欧洲综合另类| 亚洲男人电影天堂| 专区另类欧美日韩| 亚洲品质自拍视频| 亚洲视频图片小说| 中文字幕一区二区三区在线观看 | 久久精品亚洲精品国产欧美| 欧美xxxx在线观看| 日韩欧美国产一二三区| 欧美一级国产精品| 日韩免费观看高清完整版| 日韩欧美一二区| 2019国产精品| 久久精品视频在线免费观看| 国产三级精品三级| 国产精品乱子久久久久| 中文字幕亚洲一区二区va在线| 国产精品成人免费精品自在线观看| 国产欧美一区二区三区在线老狼| 日本一区二区三区国色天香| 国产精品国产三级国产a| 成人免费视频在线观看| 一区二区视频免费在线观看| 亚洲va天堂va国产va久| 美女网站一区二区| 国产乱一区二区| av在线免费不卡| 欧美三区免费完整视频在线观看| 欧美日韩国产另类一区| 欧美一区二区成人| 国产午夜精品福利| 一区二区三区国产| 蜜桃视频第一区免费观看| 国产一区视频导航| 91丨porny丨国产入口| 欧美日韩在线精品一区二区三区激情 | 国产高清成人在线| 91玉足脚交白嫩脚丫在线播放| 欧美日韩精品一区二区| 日韩三级免费观看| 国产精品丝袜一区| 亚洲图片欧美视频| 老司机一区二区| 99久久久久免费精品国产 | 亚洲一区二区三区四区的| 蜜臀av性久久久久蜜臀aⅴ流畅 | 精品亚洲国内自在自线福利| 国产精品夜夜嗨| 欧美日韩免费电影| 国产欧美日韩激情| 日日夜夜一区二区| 丁香一区二区三区| 欧美电影一区二区三区| 国产精品久久久久久久久免费相片| 亚洲一区在线电影| 国产电影一区二区三区| 欧美日韩一区三区四区| 国产校园另类小说区| 性久久久久久久久久久久| 国产a精品视频| 日韩亚洲电影在线| 一区二区三区四区在线免费观看| 久久99精品国产麻豆婷婷 | av电影在线不卡| 亚洲丝袜另类动漫二区| 美女一区二区三区在线观看| 99re热视频这里只精品| 久久影院电视剧免费观看| 亚洲成人免费在线观看| aaa国产一区| 国产亚洲精品久| 蜜桃免费网站一区二区三区| 欧美在线free| 最好看的中文字幕久久| 国产麻豆视频精品| 日韩欧美色综合| 亚洲第一二三四区| 一本久道中文字幕精品亚洲嫩| 久久久国产精品午夜一区ai换脸| 日韩高清中文字幕一区| 欧美在线一二三| 亚洲欧美另类小说视频| 国产不卡一区视频| 精品蜜桃在线看| 美女视频黄a大片欧美| 9191国产精品| 亚洲国产另类精品专区| 色综合色综合色综合色综合色综合 | 日韩欧美国产电影| 午夜精品久久久久影视| 欧美视频一区二区| 一区二区三区日韩欧美| 色婷婷综合五月| 亚洲精品国久久99热| 不卡av在线免费观看| 国产精品美女久久久久aⅴ| 国产福利一区二区| 中文字幕乱码久久午夜不卡| 国产福利精品一区| 国产三级欧美三级日产三级99| 国产精品一区二区三区网站| 久久久www免费人成精品| 国产一区二区毛片| 久久精品视频免费| 亚洲人亚洲人成电影网站色| 国产盗摄女厕一区二区三区| 欧美大胆人体bbbb| 国产自产视频一区二区三区| 久久久久久久久久久久久久久99 | 国产视频一区二区在线观看| 国产自产高清不卡| 欧美激情一二三区| 91丨九色丨蝌蚪富婆spa| 亚洲综合色在线| 欧美福利电影网| 久久99最新地址| 欧美韩日一区二区三区| 91麻豆文化传媒在线观看| 一区二区在线观看免费| 欧美精品日韩精品| 美腿丝袜一区二区三区| 久久久精品国产99久久精品芒果| 成人视屏免费看| 亚洲一区二区三区四区的| 91麻豆精品国产91久久久久久久久 | 久久九九久精品国产免费直播| 国产成人自拍高清视频在线免费播放| 国产精品妹子av| 欧美日韩亚洲综合一区二区三区| 久久国产人妖系列| 国产精品美女www爽爽爽| 在线观看不卡视频| 老司机精品视频导航| 国产日产亚洲精品系列| 久久久91精品国产一区二区三区| av亚洲精华国产精华精华| 日韩中文字幕不卡| 国产日产精品一区|