sony.h
资源名称:c.rar [点击查看]
上传用户:puke2000
上传日期:2022-07-25
资源大小:912k
文件大小:1k
源码类别:

C#编程

开发平台:

Visual C++

  1. //=====================================
  2. // sony.h
  3. //=====================================
  4. #ifndef HEADER_SONY
  5. #define HEADER_SONY
  6. //-------------------------------------
  7. class CreateSony;       // or #include"createsony.h" (注意前向声明)
  8. //-------------------------------------
  9. class Sony{
  10. public:
  11.   virtual void adjustVolume() = 0;
  12.   virtual void switchChannel() = 0;
  13.   virtual ~Sony(){}
  14. };//-------------------------
  15. Sony* createSonyInch29(CreateSony*);
  16. Sony* createSonyInch43(CreateSony*);
  17. //-------------------------------------
  18. #endif  // HEADER_SONY
  19.