Searched defs:StorageSlot (Results 1 - 1 of 1) sorted by relevance

/vbox/src/VBox/Frontends/VirtualBox/src/globals/
H A DUIDefs.h119 struct StorageSlot struct
121 StorageSlot() : bus(KStorageBus_Null), port(0), device(0) {} function in struct:StorageSlot
122 StorageSlot(const StorageSlot &other) : bus(other.bus), port(other.port), device(other.device) {} function in struct:StorageSlot
123 StorageSlot(KStorageBus otherBus, LONG iPort, LONG iDevice) : bus(otherBus), port(iPort), device(iDevice) {} function in struct:StorageSlot
124 StorageSlot& operator=(const StorageSlot &other) { bus = other.bus; port = other.port; device = other.device; return *this; }
125 bool operator==(const StorageSlot &other) const { return bus == other.bus && port == other.port && device == other.device; }
126 bool operator!=(const StorageSlot &other) const { return bus != other.bus || port != other.port || device != other.device; }
127 bool operator<(const StorageSlot
136 Q_DECLARE_METATYPE(StorageSlot); variable
[all...]

Completed in 42 milliseconds