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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? process.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.
//
*/

// Process.h: interface for the CProcess, CSubProcess, CBook, CChapter 
// classes.
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_PROCESS_H__0BEF2D62_BEB9_4ED5_B128_8B84AC5ABBDA__INCLUDED_)
#define AFX_PROCESS_H__0BEF2D62_BEB9_4ED5_B128_8B84AC5ABBDA__INCLUDED_

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

#include "Func.h"
#include "Filter.h"

class CProcess;
class CFilter;

//////////////////////////////////////////////////////////////////////
// class CChapter provides classification for IPP library chapter.
// Chapter consists of functions.
// Functions are shown in the right column of Process Dialog sheet
// and chapters are shown in the middle column of Process Dialog sheet
//////////////////////////////////////////////////////////////////////

class CChapter : public CFuncList
{
public:
   // constructor / destructor
   CChapter(CString name = _T("")) : m_ChapterName(name) {}
   virtual ~CChapter() {}
   CChapter(const CChapter& chapter) { *this = chapter; }
   CChapter& operator=(const CChapter& chapter) {
      m_CurrFunc = chapter.m_CurrFunc;
      m_ChapterName = chapter.m_ChapterName;
      RemoveAll();
      AddTail((CFuncList*)&chapter);
      m_NameList.RemoveAll();
      m_NameList.AddTail((CStringList*)&(chapter.m_NameList));
      return *this;
   }
   friend class CSubProcess;
   // operations
   void AddBase(CString name) { m_NameList.AddTail(name);}
   int InitFunctions(CFuncList* pFuncList);
   void CopyFunctions(CChapter* pSrc);
   BOOL ApplyVector(CVector* pVec);
   BOOL ApplyFilter(const CFilter* pFilter);
   // attributes
   BOOL PresentBase(CString name);
   CFunc GetCurrentFunction(CFunc pairFunc = _T(""));
   void SetCurrentFunction(CFunc func);
   void SetChapterName(CString name) { m_ChapterName = name;}
   CString GetChapterName() { return m_ChapterName;}
   int GetFunctionsWithBase(CString baseName, CFuncList& funcList);
protected:
   CFunc m_CurrFunc;
   CString m_ChapterName;
   CStringList m_NameList;
};

//////////////////////////////////////////////////////////////////////
// class CBook provides classification for IPP library book.
// Book consists of chapters.
// Chapters are shown in the middle column of Process Dialog sheet
// and books are shown in the left column of Process Dialog sheet
//////////////////////////////////////////////////////////////////////

class CBook : public CArray<CChapter, CChapter&> {
public:
   CBook(CString name = _T("")) : 
      m_BookName(name), m_CurrChapter(-1) {}
   virtual ~CBook() {}
   CBook(const CBook& book) { *this = book; }
   CBook& operator=(const CBook& book) {
      m_BookName = book.m_BookName;
      m_CurrChapter = book.m_CurrChapter;
      RemoveAll();
      Append(book);
      return *this;
   }
   // operations
   CChapter* Add(CString name) { 
      CChapter chapter(name);
      int index = (int)CArray<CChapter, CChapter&>::Add(chapter); 
      return &(ElementAt(index));
   }
   friend class CSubProcess;
   BOOL InitFunctions(CFuncList* pFuncList);
   void CopyFunctions(CBook* pSrc);
   int GetFuncCount();
   // attributes
   CString GetName() { return m_BookName;}
   BOOL PresentBase(CString name);
   CFunc GetCurrentFunction(CFunc pairFunc = _T(""));
   void SetCurrentFunction(int nChapter, CFunc func);
   int GetCurrentChapter() { return m_CurrChapter;}
   void SetCurrentChapter(int nChapter);
   int GetFunctionsWithBase(CString baseName, CFuncList& funcList);
protected:
   int m_CurrChapter;
   CString m_BookName;

   BOOL ApplyVector(CVector* pVec);
   BOOL ApplyFilter(const CFilter* pFilter);
};

//////////////////////////////////////////////////////////////////////
// class CSubProcess provides classification for one IPP library.
// Library consists of books.
// Books are shown in the left column of Process Dialog sheet
// and each library has its own sheet
//////////////////////////////////////////////////////////////////////

class CSubProcess : public CArray<CBook, CBook&> {
public:
   CSubProcess();
   virtual ~CSubProcess() {}
   CSubProcess(const CSubProcess& process) { *this = process; }
   CSubProcess& operator=(const CSubProcess& process) {
      m_CurrBook = process.m_CurrBook;
      m_pParentProcess = process.m_pParentProcess;
      RemoveAll();
      Append(process);
      return *this;
   }
   // operations
   void InitFunctions(CFuncList* pFuncList); 
   void SetFunctions(CFuncList* pFuncList);
   void CopyFunctions(CSubProcess* pSrc);
   CBook* Add(CString name) { 
      CBook book(name);
      int index = (int)CArray<CBook, CBook&>::Add(book); 
      return &(ElementAt(index));
   }
   int GetFuncCount();
   void GetCurrentSettings(CSubProcess* pDstProcess);
   BOOL ApplyVectorNoSet(CVector* pVec);
   BOOL ApplyVector(CVector* pVec);
   BOOL ApplyFilter(const CFilter* pFilter, int libIdx = 0);
   // attributes
   void SetParentProcess(CSubProcess* ptr) { m_pParentProcess = ptr;}
   CSubProcess* GetParentProcess() { return m_pParentProcess;}
   BOOL PresentBase(CString name);
   int GetCurrentBook() { return m_CurrBook;}
   int GetCurrentChapter();
   CFunc GetCurrentFunction(CFunc pairFunc = _T(""));
   void SetCurrentBook(int nBook);
   void SetCurrentChapter(int nBook, int nChapter);
   void SetCurrentFunction(int nBook, int nChapter, CFunc func);
   int GetFunctionsWithBase(CString baseName, CFuncList& funcList);
protected:
   int m_CurrBook;
   CSubProcess* m_pParentProcess;
};

//////////////////////////////////////////////////////////////////////
// class CProcess provides classification for all IPP libraries.
// They are shown in Process Dialog
// and each library has its own sheet
//////////////////////////////////////////////////////////////////////

class CProcess : public CArray<CSubProcess, CSubProcess&> {
public:
//////////////////////////////////////////////////////////////////////
// Construction / destruction
   CProcess();
   virtual ~CProcess() {}
   CProcess(const CProcess& process) { *this = process; }
   CProcess& operator=(const CProcess& process) {
      m_CurrProcess = process.m_CurrProcess;
      RemoveAll();
      Append(process);
      return *this;
   }

// Overwrites
   virtual UINT GetIdFilter(int idx);

// Operations
   void InitFunctions();
   void SetFunctions();
   void CopyFunctions(CProcess* pSrc);
   CBook* Add(CString name, int idx = 0);
   BOOL GetFunction(CVector* pVec, CFunc& func) ;
   int GetFuncCount();
   void GetCurrentSettings(CProcess* pDstProcess);
   void SetCurrentSettings(CProcess* pSrcProcess);
   BOOL ApplyVectorNoSet(CVector* pVec);
   BOOL ApplyVector(CVector* pVec);
   BOOL ApplyFilter(const CFilter* pFilter);
// Attributes
   BOOL PresentBase(CString name);
   int GetCurrentProcess() { return m_CurrProcess;}
   int GetCurrentBook();
   int GetCurrentChapter();
   CFunc GetCurrentFunction(CFunc pairFunc = _T(""));
   void SetCurrentProcess(int nProcess);
   void SetCurrentBook(int nProcess, int nBook);
   void SetCurrentChapter(int nProcess, int nBook, int nChapter);
   void SetCurrentFunction(int nProcess, int nBook, int nChapter, CFunc func);
   void SetParentProcess(CProcess* ptr);
   int GetFunctionsWithBase(CString baseName, CFuncList& funcList);

   static CFilter GetFilter(int idx = 0) { return m_pFilter[idx];}
   static void SetFilter(CFilter filter, int idx = 0) { m_pFilter[idx] = filter;}

protected:
   int m_CurrProcess;
   static CFilter* m_pFilter;
};

#endif // !defined(AFX_PROCESS_H__0BEF2D62_BEB9_4ED5_B128_8B84AC5ABBDA__INCLUDED_)

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲午夜久久久久久久久电影网| 午夜亚洲国产au精品一区二区| 麻豆精品新av中文字幕| 欧美不卡123| 久久99国产精品免费| 国产亚洲欧美日韩日本| 成人黄色777网| 亚洲成人精品一区二区| 欧美精品亚洲一区二区在线播放| 一区二区三区电影在线播| 欧美吻胸吃奶大尺度电影| 亚洲第一二三四区| 久久影视一区二区| 色婷婷亚洲一区二区三区| 久久国内精品视频| 国产精品久久久久一区二区三区 | 国产不卡高清在线观看视频| 亚洲成人资源网| 欧美国产视频在线| 日韩欧美中文字幕公布| 一本久久a久久精品亚洲| 麻豆久久久久久| 精品奇米国产一区二区三区| 色综合网站在线| 久久国产精品72免费观看| 亚洲三级在线看| 国产三区在线成人av| 91精品福利在线一区二区三区 | 国产婷婷精品av在线| 欧美亚日韩国产aⅴ精品中极品| 国产福利一区二区| 日本午夜一本久久久综合| 亚洲精品视频在线观看网站| 中文字幕一区二区视频| 中文子幕无线码一区tr| 国产精品热久久久久夜色精品三区 | 国产精品18久久久久久久久| 久久精品99国产精品| 日本vs亚洲vs韩国一区三区二区 | 欧美aaaaa成人免费观看视频| 一区二区三区日韩在线观看| 国产亚洲欧美色| 亚洲精品视频在线| 亚洲久草在线视频| 亚洲一区二区在线观看视频| 亚洲色图制服丝袜| 亚洲精品va在线观看| 亚洲一区二区三区影院| 蜜臀av性久久久久蜜臀aⅴ流畅| 久久爱另类一区二区小说| 久久99热狠狠色一区二区| 国产91丝袜在线18| 欧美午夜理伦三级在线观看| 欧美一区二区免费视频| 久久精品一区二区三区四区| 国产精品久久久久久久久免费相片| 亚洲欧美日韩国产综合在线| 亚洲一区二区三区在线播放| 麻豆精品一区二区三区| 日本二三区不卡| 久久久美女毛片| 一区二区三区欧美| 国产麻豆视频一区二区| 色婷婷久久综合| 国产精品高清亚洲| 国产乱码精品一区二区三区五月婷| av福利精品导航| 久久精品一二三| 日本不卡高清视频| 日韩欧美一二三四区| 日本中文字幕一区二区视频| 色婷婷久久久综合中文字幕| 久久婷婷国产综合精品青草| 亚洲成a人v欧美综合天堂下载| 99久久免费视频.com| 久久久久久9999| 国产成人亚洲综合a∨婷婷图片| 久久综合九色综合欧美就去吻| 欧美aa在线视频| 精品国产成人在线影院| 日本不卡1234视频| 日韩欧美中文字幕制服| 国产一区二区在线视频| 久久久综合视频| 播五月开心婷婷综合| 亚洲另类中文字| 欧美久久一二三四区| 热久久国产精品| 欧美丰满嫩嫩电影| 青青草97国产精品免费观看 | 久久精品国产精品亚洲红杏| 精品三级av在线| 欧美中文字幕亚洲一区二区va在线 | 91精品久久久久久蜜臀| 麻豆久久一区二区| 中文字幕欧美三区| 欧美日韩久久不卡| 国产精品香蕉一区二区三区| 国产视频视频一区| 国产乱淫av一区二区三区| 中文字幕成人在线观看| 色综合久久久久网| 韩国成人在线视频| 午夜视频在线观看一区二区| 久久亚洲一区二区三区四区| 欧美在线一二三四区| 国产精品资源在线观看| 日本vs亚洲vs韩国一区三区二区| 国产女主播一区| 日韩一级视频免费观看在线| 91视频在线看| 国产精品香蕉一区二区三区| 日本一区二区三区在线观看| 91精品蜜臀在线一区尤物| 一本一道综合狠狠老| 99re在线视频这里只有精品| 国产在线国偷精品产拍免费yy| 欧美a级理论片| 毛片基地黄久久久久久天堂| 日韩中文字幕一区二区三区| 亚洲综合小说图片| 亚洲色图在线播放| 一区二区三区美女视频| 亚洲综合成人在线视频| 亚洲人妖av一区二区| 亚洲美女视频一区| 亚洲国产成人porn| 麻豆成人91精品二区三区| 精品一区二区三区免费观看| 国产91精品入口| 国产精品久久久爽爽爽麻豆色哟哟| 国产精品不卡视频| 精品国产免费一区二区三区香蕉| 欧美影院一区二区三区| a亚洲天堂av| 色狠狠色狠狠综合| 成人av电影免费在线播放| 亚洲aⅴ怡春院| 精品一二三四在线| 99re热视频精品| 亚洲精品一区二区三区福利| 中文字幕在线观看一区二区| 亚洲午夜在线视频| 成人国产精品视频| 欧美成人r级一区二区三区| 国产精品久久久久aaaa| 成人听书哪个软件好| 精品精品欲导航| 天天综合天天综合色| 91玉足脚交白嫩脚丫在线播放| 精品国产一区二区亚洲人成毛片| 亚洲成人av在线电影| 欧美在线播放高清精品| 欧美激情一区二区三区全黄| 日韩电影一区二区三区四区| 国产麻豆午夜三级精品| 日韩精品一区二区三区在线| 午夜精品久久久久久不卡8050| 91丨九色丨蝌蚪富婆spa| 国产精品三级久久久久三级| 高清shemale亚洲人妖| 久久久久久久综合色一本| 国产真实乱偷精品视频免| 国产精品美女视频| 一本一道久久a久久精品| 亚洲综合丝袜美腿| 日韩免费看的电影| 成人精品高清在线| 亚洲成a人v欧美综合天堂| 欧美三级日韩三级| 精品夜夜嗨av一区二区三区| 日韩精品专区在线影院观看| 蜜臀av性久久久久蜜臀aⅴ四虎| 久久久久久麻豆| 99精品桃花视频在线观看| 亚洲欧美日韩国产中文在线| 欧美性猛片aaaaaaa做受| 国产麻豆日韩欧美久久| 亚洲国产精品ⅴa在线观看| 国产98色在线|日韩| 免费一级片91| 中文字幕亚洲视频| 欧美v国产在线一区二区三区| 成人精品国产福利| 极品少妇xxxx精品少妇| 一区二区三区在线播| www亚洲一区| 欧美电视剧在线观看完整版| 不卡一区二区在线| 国产精品自产自拍| 精品午夜久久福利影院| 中文字幕免费不卡在线| 精品日韩99亚洲| 精品va天堂亚洲国产| 欧美成人一区二区三区片免费| 欧美人与禽zozo性伦| 欧美日韩中文另类| 欧美日韩亚洲综合| 91精品视频网| 久久久三级国产网站|