#include "StdAfx.h" #include "MBVaultAppInfo.h" IMPLEMENT_DYNAMIC(CMBVaultAppInfo, CMBBaseAppObj) CMBVaultAppInfo::CMBVaultAppInfo() { m_pVaultMgr = new CMBVaultMgr(); } CMBVaultAppInfo::~CMBVaultAppInfo() { if( m_pVaultMgr ) { delete m_pVaultMgr; m_pVaultMgr = NULL; } } CMBVaultMgr *CMBVaultAppInfo::GetVaultMgr() { return m_pVaultMgr; }