VideoFileDetails.cpp
上传用户:xinrui0099
上传日期:2010-03-05
资源大小:48k
文件大小:1k
源码类别:

Symbian

开发平台:

C/C++

  1. /*
  2. * ============================================================================
  3. *  Name     : CVideoFileDetails from VideoFileDetails.h
  4. *  Part of  : Video
  5. *  Created  : 10/14/2003 by Forum Nokia
  6. *  Implementation notes:
  7. *
  8. *  Version  :
  9. *  Copyright: Nokia Corporation, 2003
  10. * ============================================================================
  11. */
  12. #include    "VideoFileDetails.h"
  13. /*
  14. -----------------------------------------------------------------------------
  15. CVideoFileDetails::CVideoFileDetails()
  16. Description: C++ default constructor can NOT contain any code, that
  17.  might leave.
  18. Comments   :
  19.     Return values: N/A
  20. -----------------------------------------------------------------------------
  21. */
  22. CVideoFileDetails::CVideoFileDetails()
  23.     {
  24.     }
  25. /*
  26. -----------------------------------------------------------------------------
  27. CVideoFileDetails::~CVideoFileDetails()
  28. Description: Destructor
  29. Comments   :
  30.     Return values: N/A
  31. -----------------------------------------------------------------------------
  32. */
  33. CVideoFileDetails::~CVideoFileDetails()
  34.     {
  35.     delete iTitle;
  36.     delete iFileName;
  37.     delete iUrl;
  38.     delete iFormat;
  39.     delete iCopyright;
  40.     }