Video Demo.h
上传用户:smdfuse
上传日期:2015-11-06
资源大小:98k
文件大小:2k
源码类别:

图形图象

开发平台:

Visual C++

  1. // Video Demo.h : main header file for the VIDEO DEMO application
  2. //
  3. #if !defined(AFX_VIDEODEMO_H__2F3EA7BB_E6A9_4BF3_BCD7_39D5D4F49B7D__INCLUDED_)
  4. #define AFX_VIDEODEMO_H__2F3EA7BB_E6A9_4BF3_BCD7_39D5D4F49B7D__INCLUDED_
  5. #if _MSC_VER > 1000
  6. #pragma once
  7. #endif // _MSC_VER > 1000
  8. #ifndef __AFXWIN_H__
  9. #error include 'stdafx.h' before including this file for PCH
  10. #endif
  11. // 数据管理
  12. #include "DataManager.h"
  13. #include "MediaSource.h"
  14. // CImageProcessingCenterBCGEApp:
  15. // See Image Processing Center BCGE.cpp for the implementation of this class
  16. //
  17. #include "video demodoc.h"
  18. #include "resource.h"       // main symbols
  19. /////////////////////////////////////////////////////////////////////////////
  20. // CVideoDemoApp:
  21. // See Video Demo.cpp for the implementation of this class
  22. //
  23. class CVideoDemoApp : public CWinApp
  24. {
  25. public:
  26. CVideoDemoApp();
  27. // Overrides
  28. // ClassWizard generated virtual function overrides
  29. //{{AFX_VIRTUAL(CVideoDemoApp)
  30. public:
  31. virtual BOOL InitInstance();
  32. //}}AFX_VIRTUAL
  33. public:
  34. DataManager dm;           // 数据管理器
  35. ImageData *curImageData;  // 当前图像数据
  36. ImageData *lastImageData; // 上一次选择的图像数据
  37. VideoData *curVideo;      // 当前视频(目前版本不对视频进行管理,只打开视频)
  38. // Implementation
  39. //{{AFX_MSG(CVideoDemoApp)
  40. afx_msg void OnAppAbout();
  41. // NOTE - the ClassWizard will add and remove member functions here.
  42. //    DO NOT EDIT what you see in these blocks of generated code !
  43. //}}AFX_MSG
  44. DECLARE_MESSAGE_MAP()
  45. };
  46. extern CVideoDemoApp theApp;
  47. /////////////////////////////////////////////////////////////////////////////
  48. //{{AFX_INSERT_LOCATION}}
  49. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  50. #endif // !defined(AFX_VIDEODEMO_H__2F3EA7BB_E6A9_4BF3_BCD7_39D5D4F49B7D__INCLUDED_)