#include "StdAfx.h"
|
#include "MBErrFileInfo.h"
|
|
IMPLEMENT_DYNAMIC(CMBErrFileInfo, CMBBaseObj)
|
|
CMBErrFileInfo::CMBErrFileInfo(void)
|
{
|
}
|
|
|
CMBErrFileInfo::~CMBErrFileInfo(void)
|
{
|
}
|
|
CString CMBErrFileInfo::GetFileType()
|
{
|
return CStrFileUtils::GetFileExtName(m_strLocalPath);
|
}
|
|
CString CMBErrFileInfo::GetFileName()
|
{
|
return CStrFileUtils::GetFileName(m_strLocalPath);
|
}
|