chxavstring.cpp
上传用户:zhongxx05
上传日期:2007-06-06
资源大小:33641k
文件大小:1k
- /************************************************************************
- * chxavstring.cpp
- * ---------------
- *
- * Synopsis:
- * Contains the implementation of the CHXAvString class. Useful class
- * that cleans itself from the stack and that loads resource strings.
- *
- * Target:
- * Symbian OS
- *
- *
- * (c) 1995-2003 RealNetworks, Inc. Patents pending. All rights reserved.
- *
- *****************************************************************************/
- // Symbian includes...
- #include <aknpopup.h>
- #include <akntitle.h>
- #include <eikenv.h>
- #include <coemain.h>
- // Helix includes...
- #include "hxassert.h"
- #include "hxstring.h"
- // Includes from this project...
- #include "chxavstring.h"
- // Class implementation...
- /*
- * CHXAvString
- * -----------
- * Ctor. Takes a res id and loads the string.
- *
- */
- CHXAvString::CHXAvString(TInt resId)
- {
- m_pText = CEikonEnv::Static()->AllocReadResourceLC(resId);
- }
-
- #endif // _chxavstring_h_