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

C#编程

开发平台:

Visual C++

  1. //=====================================
  2. // createsony.cpp
  3. //=====================================
  4. #include"createsony.h"
  5. //-------------------------------------
  6. Sony* createSonyInch29(CreateSony* sp){
  7.   return sp->createInch29();
  8. }//------------------------------------
  9. Sony* createSonyInch43(CreateSony* sp){
  10.   return sp->createInch43();
  11. }//------------------------------------
  12. CreateSony* createCreateSony(int a){
  13.   switch(a){
  14.     case  0: return createPureflat();
  15.     case  1: return createPlasma();
  16.     case  2: return createLiquidCrystal();
  17.     case  3: return createNanometer();
  18.     default: return 0;
  19.   }
  20. }//------------------------------------
  21.