Link to home
Start Free TrialLog in
Avatar of chicho12
chicho12

asked on

The symbol 'ClassName' is not referenced ERROR

I am using Microsoft Visual C++ 6.0
On the code below(code is part of a class)  If I right click on CCMReportSummary  and select "got to reference to CCMReportSummary "  I get the error "The symbol CCMReportSummary is not referenced"
If I do the same for CCMReportBrokerAscii it takes me to the definition of the class like it should.  It is only happening for the CCMReportSummary  class.
Does anybody has an idea why and how to fix the problem?   The project seems to build without problems.

Thanks,

Chicho


for (i = 0; i < m_listReportsSummary.GetSize(); i++)
    {
            

        CCMReportSummary *pSummary = (CCMReportSummary *)m_listReportsSummary.GetAt(i);

        if (pSummary)
            delete pSummary;
    }
    m_listReportsSummary.RemoveAll();

    for (i = 0; i < m_listReportBrokersSummary.GetSize(); i++)
    {
        CCMReportBrokerAscii *pBroker = (CCMReportBrokerAscii *)m_listReportBrokersSummary.GetAt(i);

        if (pBroker)
            delete pBroker;
    }
    m_listReportBrokersSummary.RemoveAll();
ASKER CERTIFIED SOLUTION
Avatar of jkr
jkr
Flag of Germany image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of chicho12
chicho12

ASKER

THanks,
I think that worked.

Chicho