Changeset 83146 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Feb 25, 2020 11:20:42 AM (5 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src/globals
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/globals/UICloudMachine.cpp
r83144 r83146 53 53 *********************************************************************************************************************************/ 54 54 55 UICloudMachine::UICloudMachine() 56 { 57 } 58 55 59 UICloudMachine::UICloudMachine(const CCloudClient &comCloudClient, 56 60 const QString &strId, -
trunk/src/VBox/Frontends/VirtualBox/src/globals/UICloudMachine.h
r83145 r83146 67 67 public: 68 68 69 /** Constructs null cloud VM wrapper. */ 70 UICloudMachine(); 69 71 /** Constructs cloud VM wrapper on the basis of arguments. 70 72 * @param comCloudClient Brings the cloud client object instance. … … 76 78 /** Constructs cloud VM wrapper on the basis of @a other wrapper. */ 77 79 UICloudMachine(const UICloudMachine &other); 80 81 /** Returns whether cloud VM wrapper is null. */ 82 bool isNull() const { return !d.constData(); } 78 83 79 84 /** Returns cloud client object reference. */ … … 91 96 }; 92 97 98 /* Make meta-object sub-system aware: */ 99 Q_DECLARE_METATYPE(UICloudMachine); 100 93 101 #endif /* !FEQT_INCLUDED_SRC_manager_UICloudMachine_h */
Note:
See TracChangeset
for help on using the changeset viewer.