Changeset 49228 in vbox for trunk/src/VBox/Main/src-server/HostDnsService.h
- Timestamp:
- Oct 22, 2013 12:24:28 PM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 90128
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-server/HostDnsService.h
r49224 r49228 29 29 typedef std::list<com::Utf8Str> Utf8StrList; 30 30 typedef Utf8StrList::iterator Utf8StrListIterator; 31 32 33 class Lockee 34 { 35 public: 36 Lockee(); 37 virtual ~Lockee(); 38 const RTCRITSECT* lock() const; 39 40 private: 41 RTCRITSECT mLock; 42 }; 43 44 45 class ALock 46 { 47 public: 48 ALock(const Lockee *l); 49 ~ALock(); 50 51 private: 52 const Lockee *lck; 53 }; 54 31 55 32 56 class HostDnsService
Note:
See TracChangeset
for help on using the changeset viewer.