Where does the destructor code for things I have defined in an ATL COM object belong?
Should it go in ~MyComClass() or in MyComClass::FinalRelease()?
|
Where does the destructor code for things I have defined in an ATL COM object belong? Should it go in |
||||
|
|
|
As long as In most cases you can clean things up in either of the two. That is, you clean things up in two steps, first references to aggregated objects in |
|||
|
|
|
This is the general approach:
EDIT: |
|||||||||
|