chxavstring.cpp
上传用户:zhongxx05
上传日期:2007-06-06
资源大小:33641k
文件大小:1k
源码类别:

Symbian

开发平台:

C/C++

  1. /************************************************************************
  2.  * chxavstring.cpp
  3.  * ---------------
  4.  *
  5.  * Synopsis:
  6.  * Contains the implementation of the CHXAvString class.  Useful class
  7.  * that cleans itself from the stack and that loads resource strings.
  8.  *
  9.  * Target:
  10.  * Symbian OS
  11.  *
  12.  *
  13.  * (c) 1995-2003 RealNetworks, Inc. Patents pending. All rights reserved.
  14.  *
  15.  *****************************************************************************/
  16. // Symbian includes...
  17. #include <aknpopup.h>
  18. #include <akntitle.h>
  19. #include <eikenv.h>
  20. #include <coemain.h>
  21. // Helix includes...
  22. #include "hxassert.h"
  23. #include "hxstring.h"
  24. // Includes from this project...
  25. #include "chxavstring.h"
  26. // Class implementation...
  27. /*
  28.  * CHXAvString
  29.  * -----------
  30.  * Ctor.  Takes a res id and loads the string.
  31.  *
  32.  */
  33. CHXAvString::CHXAvString(TInt resId)
  34. {
  35.     m_pText = CEikonEnv::Static()->AllocReadResourceLC(resId);
  36. }
  37.    
  38. #endif // _chxavstring_h_