Changeset 83144 in vbox
- Timestamp:
- Feb 25, 2020 11:06:13 AM (5 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox
- Files:
-
- 1 edited
- 2 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/Makefile.kmk
r83129 r83144 1062 1062 src/hostnetwork/UIHostNetworkManager.cpp \ 1063 1063 src/hostnetwork/UIHostNetworkUtils.cpp \ 1064 src/manager/UICloudMachine.cpp \1065 1064 src/manager/UICloudNetworkingStuff.cpp \ 1066 1065 src/manager/UIErrorPane.cpp \ … … 1320 1319 src/globals/UIActionPoolRuntime.cpp \ 1321 1320 src/globals/UIAnimationFramework.cpp \ 1321 src/globals/UICloudMachine.cpp \ 1322 1322 src/globals/UICommon.cpp \ 1323 1323 src/globals/UICustomFileSystemModel.cpp \ -
trunk/src/VBox/Frontends/VirtualBox/src/globals/UICloudMachine.h
r83143 r83144 26 26 #include <QSharedData> 27 27 28 /* GUI includes: */ 29 #include "UILibraryDefs.h" 30 28 31 /* COM includes: */ 29 32 #include "COMEnums.h" … … 31 34 32 35 /** QSharedData subclass to handle shared data for cloud VM wrapper below. */ 33 class UICloudMachineData : public QSharedData36 class SHARED_LIBRARY_STUFF UICloudMachineData : public QSharedData 34 37 { 35 38 public: … … 60 63 * This class is based on explicitly-shared memory and thus optimized 61 64 * for being passed across as copied object, not just reference. */ 62 class UICloudMachine65 class SHARED_LIBRARY_STUFF UICloudMachine 63 66 { 64 67 public:
Note:
See TracChangeset
for help on using the changeset viewer.