Changeset 39843 in vbox for trunk/src/VBox/Main/include/GuestCtrlImplPrivate.h
- Timestamp:
- Jan 23, 2012 6:38:18 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/GuestCtrlImplPrivate.h
r39475 r39843 37 37 38 38 /** Structure representing the "value" side of a "key=value" pair. */ 39 class VBOXGUESTCTRL_STREAMVALUE39 class GuestProcessStreamValue 40 40 { 41 41 public: 42 42 43 VBOXGUESTCTRL_STREAMVALUE() { }44 VBOXGUESTCTRL_STREAMVALUE(const char *pszValue)43 GuestProcessStreamValue() { } 44 GuestProcessStreamValue(const char *pszValue) 45 45 : mValue(pszValue) {} 46 46 47 VBOXGUESTCTRL_STREAMVALUE(const VBOXGUESTCTRL_STREAMVALUE& aThat)47 GuestProcessStreamValue(const GuestProcessStreamValue& aThat) 48 48 : mValue(aThat.mValue) {} 49 49 … … 52 52 53 53 /** Map containing "key=value" pairs of a guest process stream. */ 54 typedef std::pair< Utf8Str, VBOXGUESTCTRL_STREAMVALUE> GuestCtrlStreamPair;55 typedef std::map < Utf8Str, VBOXGUESTCTRL_STREAMVALUE> GuestCtrlStreamPairMap;56 typedef std::map < Utf8Str, VBOXGUESTCTRL_STREAMVALUE>::iterator GuestCtrlStreamPairMapIter;57 typedef std::map < Utf8Str, VBOXGUESTCTRL_STREAMVALUE>::const_iterator GuestCtrlStreamPairMapIterConst;54 typedef std::pair< Utf8Str, GuestProcessStreamValue > GuestCtrlStreamPair; 55 typedef std::map < Utf8Str, GuestProcessStreamValue > GuestCtrlStreamPairMap; 56 typedef std::map < Utf8Str, GuestProcessStreamValue >::iterator GuestCtrlStreamPairMapIter; 57 typedef std::map < Utf8Str, GuestProcessStreamValue >::const_iterator GuestCtrlStreamPairMapIterConst; 58 58 59 59 /** … … 75 75 76 76 void Clear(); 77 78 #ifdef DEBUG 79 void Dump(); 80 #endif 77 81 78 82 int GetInt64Ex(const char *pszKey, int64_t *piVal); … … 118 122 119 123 void Destroy(); 124 125 #ifdef DEBUG 126 void Dump(const char *pszFile); 127 #endif 120 128 121 129 uint32_t GetOffset();
Note:
See TracChangeset
for help on using the changeset viewer.