- Timestamp:
- Jul 15, 2009 10:11:36 AM (15 years ago)
- Location:
- trunk/src/VBox/Main
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/ovfreader.h
r21588 r21599 27 27 #include "iprt/xml_cpp.h" 28 28 #include <map> 29 30 using namespace std;31 29 32 30 //////////////////////////////////////////////////////////////////////////////// … … 233 231 }; 234 232 235 typedef map<iprt::MiniString, DiskImage> DiskImagesMap;233 typedef std::map<iprt::MiniString, DiskImage> DiskImagesMap; 236 234 237 235 struct VirtualSystem; 238 236 239 typedef map<uint32_t, VirtualHardwareItem> HardwareItemsMap;237 typedef std::map<uint32_t, VirtualHardwareItem> HardwareItemsMap; 240 238 241 239 struct HardDiskController … … 255 253 }; 256 254 257 typedef map<uint32_t, HardDiskController> ControllersMap;255 typedef std::map<uint32_t, HardDiskController> ControllersMap; 258 256 259 257 struct VirtualDisk … … 268 266 }; 269 267 270 typedef map<iprt::MiniString, VirtualDisk> VirtualDisksMap;268 typedef std::map<iprt::MiniString, VirtualDisk> VirtualDisksMap; 271 269 272 270 /** … … 280 278 }; 281 279 282 typedef list<EthernetAdapter> EthernetAdaptersList;280 typedef std::list<EthernetAdapter> EthernetAdaptersList; 283 281 284 282 /** … … 373 371 374 372 // Data fields 375 iprt::MiniString m_strPath; // file name given to constructor376 DiskImagesMap m_mapDisks; // map of DiskImage structs, sorted by DiskImage.strDiskId377 list<VirtualSystem>m_llVirtualSystems; // list of virtual systems, created by and valid after read()373 iprt::MiniString m_strPath; // file name given to constructor 374 DiskImagesMap m_mapDisks; // map of DiskImage structs, sorted by DiskImage.strDiskId 375 std::list<VirtualSystem> m_llVirtualSystems; // list of virtual systems, created by and valid after read() 378 376 }; 379 377 -
trunk/src/VBox/Main/xml/ovfreader.cpp
r21588 r21599 671 671 } 672 672 break; 673 default: break; 673 674 } 674 675 }
Note:
See TracChangeset
for help on using the changeset viewer.