AppIPTransformView.h
上传用户:hhs829
上传日期:2022-06-17
资源大小:586k
文件大小:2k
源码类别:

DirextX编程

开发平台:

Visual C++

  1. // AppIPTransformView.h : interface of the CAppIPTransformView class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_APPIPTRANSFORMVIEW_H__3EDCEFB0_D89E_4ABD_9D61_6141FB3B4594__INCLUDED_)
  5. #define AFX_APPIPTRANSFORMVIEW_H__3EDCEFB0_D89E_4ABD_9D61_6141FB3B4594__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. #include "IPFilter.h"
  10. class CAppIPTransformView : public CView
  11. {
  12. protected: // create from serialization only
  13. CAppIPTransformView();
  14. DECLARE_DYNCREATE(CAppIPTransformView)
  15. // Attributes
  16. public:
  17. CAppIPTransformDoc* GetDocument();
  18.     // Filter graph including app filter
  19. CAppGraphBuilder m_Graph;
  20. // Operations
  21. public:
  22. // Overrides
  23. // ClassWizard generated virtual function overrides
  24. //{{AFX_VIRTUAL(CAppIPTransformView)
  25. public:
  26. virtual void OnDraw(CDC* pDC);  // overridden to draw this view
  27. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  28. protected:
  29. //}}AFX_VIRTUAL
  30. // Implementation
  31. public:
  32. virtual ~CAppIPTransformView();
  33. #ifdef _DEBUG
  34. virtual void AssertValid() const;
  35. virtual void Dump(CDumpContext& dc) const;
  36. #endif
  37. protected:
  38. // Generated message map functions
  39. protected:
  40. //{{AFX_MSG(CAppIPTransformView)
  41. afx_msg void OnPlay();
  42. afx_msg void OnSize(UINT nType, int cx, int cy);
  43. //}}AFX_MSG
  44. DECLARE_MESSAGE_MAP()
  45. };
  46. #ifndef _DEBUG  // debug version in AppIPTransformView.cpp
  47. inline CAppIPTransformDoc* CAppIPTransformView::GetDocument()
  48.    { return (CAppIPTransformDoc*)m_pDocument; }
  49. #endif
  50. /////////////////////////////////////////////////////////////////////////////
  51. //{{AFX_INSERT_LOCATION}}
  52. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  53. #endif // !defined(AFX_APPIPTRANSFORMVIEW_H__3EDCEFB0_D89E_4ABD_9D61_6141FB3B4594__INCLUDED_)