chxavfolderdisplayinfo.cpp
上传用户:dangjiwu
上传日期:2013-07-19
资源大小:42019k
文件大小:1k
源码类别:
Symbian
开发平台:
Visual C++
- /************************************************************************
- * chxavfolderdisplayinfo.cpp
- * --------------------------
- *
- * Synopsis:
- *
- * (c) 1995-2003 RealNetworks, Inc. Patents pending. All rights reserved.
- *
- ************************************************************************/
- // Includes from this project...
- #include "chxavfileutil.h"
- #include "chxavmisc.h"
- #include "chxavfolderdisplayinfo.h"
- ///////////////////////////////////
- // ctor
- CHXAvFolderDisplayInfo::CHXAvFolderDisplayInfo()
- : m_displayText(KNullDesC)
- {
- }
- ///////////////////////////////////
- // dtor
- CHXAvFolderDisplayInfo::~CHXAvFolderDisplayInfo()
- {
- }
- ///////////////////////////////////
- //
- void CHXAvFolderDisplayInfo::InitL()
- {
- }
- ///////////////////////////////////
- // set appropriate display text based on full
- // path (normally just the most significant
- // part of the path)
- //
- void CHXAvFolderDisplayInfo::SetFolderPathL(const TDesC& fullFolderPath)
- {
- m_displayText.Set(CHXAvFile::GetNakedPathNode(fullFolderPath));
- }