Picture.h
上传用户:boyawuliu
上传日期:2021-10-14
资源大小:8k
文件大小:0k
源码类别:

TreeView控件

开发平台:

Visual C++

  1. //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  2. //
  3. // File name : Picture.h
  4. // Purpose   : Class interface for the Picture class, represent for Picture file
  5. //
  6. //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  7. #pragma once
  8. #include "mediabase.h"
  9. class Picture :
  10. public MediaBase
  11. {
  12. public:
  13. Picture(void);
  14. ~Picture(void);
  15. };