protected IUserManagerSink m_pIUserManagerSink; //通知接口
        //IUserInformation *				m_pIUserInformation;		//用户信息

        //函数定义
        //构造函数
        public CPlazaUserManager()
        {
            //组件接口
            m_pIUserManagerSink = null;
            m_UserItemActive    = new List <CClientUserItem>();
            m_PoolItem          = new List <CClientUserItem>();
        }
        //配置接口

        ////设置接口
        // bool SetUserInformation(IUserInformation * pIUserInformation);
        //设置接口
        public bool SetUserManagerSink(IUserManagerSink pIUserManagerSink)
        {
            m_pIUserManagerSink = pIUserManagerSink;
            return(true);
        }