Changeset 76066 in vbox for trunk/src/VBox/Main/include/VirtualBoxClientListImpl.h
- Timestamp:
- Dec 7, 2018 10:17:39 PM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 127306
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/VirtualBoxClientListImpl.h
r71160 r76066 1 /* $Id$ */ 1 2 /** @file 2 * VBox Global COM Class definition 3 */3 * Main - VBoxSDS - VirtualBoxClientList. 4 */ 4 5 5 6 /* … … 27 28 #include "VirtualBoxClientListWrap.h" 28 29 29 /**30 * The IVirtualBoxClientList implementation.31 *32 * This class provides COM interface to track and get list of33 * API client processes.34 *35 */36 37 30 typedef std::set<LONG> TClientSet; 38 31 39 32 class CClientListWatcher; 40 33 34 /** 35 * The IVirtualBoxClientList implementation. 36 * 37 * This class provides COM interface to track and get list of 38 * API client processes. 39 */ 41 40 class ATL_NO_VTABLE VirtualBoxClientList 42 41 : public VirtualBoxClientListWrap … … 51 50 52 51 public: 53 DECLARE_CLASSFACTORY_SINGLETON(VirtualBoxClientList) 52 DECLARE_CLASSFACTORY_SINGLETON(VirtualBoxClientList) /**< r=bird: It is _NOT_ a singleton. */ 54 53 DECLARE_NOT_AGGREGATABLE(VirtualBoxClientList) 55 54 VirtualBoxClientList() : m_pWatcher(NULL) {} … … 66 65 // Private members 67 66 // polling of unexpectedly finished api client processes 68 CClientListWatcher *m_pWatcher;67 CClientListWatcher *m_pWatcher; 69 68 }; 70 69 … … 72 71 73 72 #endif // !____H_VIRTUALBOXCLIENTLISTIMPL 73
Note:
See TracChangeset
for help on using the changeset viewer.