Changeset 48805 in vbox for trunk/src/VBox/Main/src-server/HostDnsService.cpp
- Timestamp:
- Oct 2, 2013 5:16:26 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-server/HostDnsService.cpp
r48340 r48805 20 20 #include <VBox/com/string.h> 21 21 22 #include <iprt/cpp/utils.h> 23 24 #include "VirtualBoxImpl.h" 22 25 #include "HostDnsService.h" 23 26 #include <iprt/thread.h> … … 33 36 34 37 35 HRESULT HostDnsService::init (void)38 HRESULT HostDnsService::init(const VirtualBox *aParent) 36 39 { 40 mParent = aParent; 41 37 42 int rc = RTCritSectInit(&m_hCritSect); 38 43 AssertRCReturn(rc, E_FAIL); … … 51 56 HRESULT HostDnsService::update() 52 57 { 58 unconst(mParent)->onHostNameResolutionConfigurationChange(); 53 59 return S_OK; 54 60 }
Note:
See TracChangeset
for help on using the changeset viewer.