TSample.h
上传用户:snevogroup
上传日期:2008-06-06
资源大小:432k
文件大小:1k
源码类别:

Symbian

开发平台:

C/C++

  1. #ifndef __TSAMPLE_H
  2. #define __TSAMPLE_H
  3. #include <e32std.h>
  4. // support 16-bit sample
  5. class TSample
  6. {
  7. // Construct
  8. public:
  9. inline TSample() : iData(NULL){}
  10. inline TSample(TInt16* aData, TInt aLength)
  11. : iData(aData)
  12. , iLength(aLength)
  13. , iRepStart(0)
  14. , iRepEnd(0){}
  15. inline TSample(TInt16* aData, TInt aLength, TInt aRepStart, TInt aRepEnd)
  16. : iData(aData)
  17. , iLength(aLength)
  18. , iRepStart(aRepStart)
  19. , iRepEnd(aRepEnd){}
  20. ////////////////////////////////////////////////////////////////////
  21. // Data
  22. public:
  23. TInt16* iData;
  24. TInt iLength;
  25. TInt iRepStart;
  26. TInt iRepEnd;
  27. };
  28. #endif