Changeset 35638 in vbox for trunk/src/VBox/Main/include/ApplianceImpl.h
- Timestamp:
- Jan 19, 2011 7:10:49 PM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 69546
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/ApplianceImpl.h
r34101 r35638 68 68 69 69 BEGIN_COM_MAP(Appliance) 70 COM_INTERFACE_ENTRY(ISupportErrorInfo) 71 COM_INTERFACE_ENTRY(IAppliance) 72 COM_INTERFACE_ENTRY(IDispatch) 70 VBOX_DEFAULT_INTERFACE_ENTRIES(IAppliance) 73 71 END_COM_MAP() 74 72 … … 83 81 84 82 // public initializer/uninitializer for internal purposes only 85 HRESULT FinalConstruct() { return S_OK; }86 void FinalRelease() { uninit(); }83 HRESULT FinalConstruct() { return BaseFinalConstruct(); } 84 void FinalRelease() { uninit(); BaseFinalRelease(); } 87 85 88 86 HRESULT init(VirtualBox *aVirtualBox); … … 252 250 253 251 BEGIN_COM_MAP(VirtualSystemDescription) 254 COM_INTERFACE_ENTRY(ISupportErrorInfo) 255 COM_INTERFACE_ENTRY(IVirtualSystemDescription) 256 COM_INTERFACE_ENTRY(IDispatch) 252 VBOX_DEFAULT_INTERFACE_ENTRIES(IVirtualSystemDescription) 257 253 END_COM_MAP() 258 254 … … 260 256 261 257 // public initializer/uninitializer for internal purposes only 262 HRESULT FinalConstruct() { return S_OK; }263 void FinalRelease() { uninit(); }258 HRESULT FinalConstruct() { return BaseFinalConstruct(); } 259 void FinalRelease() { uninit(); BaseFinalRelease(); } 264 260 265 261 HRESULT init();
Note:
See TracChangeset
for help on using the changeset viewer.