Matze42
Starting Member
Germany
1 Posts |
Posted - Dec 21 2004 : 05:20:34 AM
|
VA_X.dll file version 10.1.1289.0 Licensed to: VA X: VA.NET 7.1: [email protected] (1-user license) VAOpsWin.dll version 1.2.0.4 DevEnv.exe version 7.10.3077.0 msenv.dll version 7.10.3077.0 Font: Courier New 11(Pixels) Comctl32.dll version 5.82.2900.2180 WindowsNT 5.1 Build 2600 Service Pack 2 Single processor
Hi,
i have a problem with the suggestions-list when using the so called "pimpl-idiom".
i.e. in Header
class CFoo { ...some stuff private: class CFooImpl; // fowrward declaration of CFooImpl CFooImpl * m_pimpl; };
and in cpp
class CFoo::CFooImpl { ...declaration of CFooImpl stuff };
... Implementation of CFoo stuff
The problem is, that here the suggestion-list keeps empty when using m_pimpl.
For example
CFoo::CFoo() { m_pimpl = new CFoo::CFooImpl; m_pimpl-> ???? ( Here it keeps empty ) }
Any ideas ? Greetings, Matze
|
|