Changeset 49202 in vbox for trunk/src/VBox/Main/src-server
- Timestamp:
- Oct 21, 2013 3:01:10 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-server/HostDnsService.h
r48955 r49202 52 52 private: 53 53 const VirtualBox *mParent; 54 HostDnsService(const HostDnsService& service){ NOREF(service); }55 HostDnsService& operator =(const HostDnsService& service){ NOREF(service); return *this; }54 HostDnsService(const HostDnsService&); 55 HostDnsService& operator =(const HostDnsService&); 56 56 }; 57 57 … … 98 98 virtual HRESULT init(const VirtualBox *aParent); 99 99 virtual HRESULT update(); 100 const com::Utf8Str resolvConf() {return m_ResolvConfFilename; } 100 101 protected: 101 102 com::Utf8Str m_ResolvConfFilename; … … 114 115 }; 115 116 # elif defined(RT_OS_LINUX) 116 /**117 * XXX: http://www.ibm.com/developerworks/linux/library/l-ubuntu-inotify/index.html118 */119 117 class HostDnsServiceLinux: public HostDnsServiceResolvConf 120 118 { … … 122 120 HostDnsServiceLinux(){} 123 121 virtual ~HostDnsServiceLinux(){} 122 virtual HRESULT init(const VirtualBox *aParent); 123 virtual void stop(void); 124 125 static int hostMonitoringRoutine(RTTHREAD ThreadSelf, void *pvUser); 124 126 }; 125 127
Note:
See TracChangeset
for help on using the changeset viewer.