我声明了static CTypedPtrList<CObList, CObjOffice *> m_queueOffice;可出错了
AuxPageOffice.obj : error LNK2001: unresolved external symbol "private: static class CTypedPtrList<class CObList,class CObjOffice *>  CAuxPageOffice::m_queueOffice" (?m_queueOffice@CAuxPageOffice@@0V?$CTypedPtrList@VCObList@@PAVCObjOffice@@@@A)我把里面的代码注释掉就不出错,为什么?
void CAuxPageOffice::FindObj(CObjOffice* obj)
{
    POSITION pos = m_queueOffice.GetHeadPosition();
    bool bExist = false;
    for(; pos != NULL; m_queueOffice.GetNext(pos))
    {
        if(*m_queueOffice.GetAt(pos) == *obj)
        {
            bExist = true;
            break;
        }
    }
    if(bExist)
        delete obj;
    else
    {
        m_queueOffice.AddTail(obj);
    }
}