Changeset 83157 in vbox
- Timestamp:
- Feb 26, 2020 11:33:14 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
r83144 r83157 1062 1062 src/hostnetwork/UIHostNetworkManager.cpp \ 1063 1063 src/hostnetwork/UIHostNetworkUtils.cpp \ 1064 src/manager/UICloudNetworkingStuff.cpp \1065 1064 src/manager/UIErrorPane.cpp \ 1066 1065 src/manager/UITaskCloudAcquireInstances.cpp \ … … 1320 1319 src/globals/UIAnimationFramework.cpp \ 1321 1320 src/globals/UICloudMachine.cpp \ 1321 src/globals/UICloudNetworkingStuff.cpp \ 1322 1322 src/globals/UICommon.cpp \ 1323 1323 src/globals/UICustomFileSystemModel.cpp \ -
trunk/src/VBox/Frontends/VirtualBox/src/globals/UICloudNetworkingStuff.h
r83156 r83157 16 16 */ 17 17 18 #ifndef FEQT_INCLUDED_SRC_ manager_UICloudNetworkingStuff_h19 #define FEQT_INCLUDED_SRC_ manager_UICloudNetworkingStuff_h18 #ifndef FEQT_INCLUDED_SRC_globals_UICloudNetworkingStuff_h 19 #define FEQT_INCLUDED_SRC_globals_UICloudNetworkingStuff_h 20 20 #ifndef RT_WITHOUT_PRAGMA_ONCE 21 21 # pragma once … … 24 24 /* GUI includes: */ 25 25 #include "UICloudMachine.h" 26 #include "UILibraryDefs.h" 26 27 27 28 /* COM includes: */ … … 36 37 * @param pWidget Brings parent widget to show messages according to, 37 38 * if no parent set, progress will be executed in blocking way. */ 38 QList<UICloudMachine> listInstances(const CCloudClient &comCloudClient,39 QWidget *pParent = 0);39 SHARED_LIBRARY_STUFF QList<UICloudMachine> listInstances(const CCloudClient &comCloudClient, 40 QWidget *pParent = 0); 40 41 41 42 /** Acquires instance info as a map. … … 44 45 * @param pWidget Brings parent widget to show messages according to, 45 46 * if no parent set, progress will be executed in blocking way. */ 46 QMap<KVirtualSystemDescriptionType, QString> getInstanceInfo(const CCloudClient &comCloudClient,47 const QString &strId,48 QWidget *pParent = 0);47 SHARED_LIBRARY_STUFF QMap<KVirtualSystemDescriptionType, QString> getInstanceInfo(const CCloudClient &comCloudClient, 48 const QString &strId, 49 QWidget *pParent = 0); 49 50 /** Acquires instance info of certain @a enmType as a string. 50 51 * @param comCloudClient Brings cloud client object. … … 52 53 * @param pWidget Brings parent widget to show messages according to, 53 54 * if no parent set, progress will be executed in blocking way. */ 54 QString getInstanceInfo(KVirtualSystemDescriptionType enmType,55 const CCloudClient &comCloudClient,56 const QString &strId,57 QWidget *pParent = 0);55 SHARED_LIBRARY_STUFF QString getInstanceInfo(KVirtualSystemDescriptionType enmType, 56 const CCloudClient &comCloudClient, 57 const QString &strId, 58 QWidget *pParent = 0); 58 59 } 59 60 … … 61 62 using namespace UICloudNetworkingStuff; 62 63 63 #endif /* !FEQT_INCLUDED_SRC_ manager_UICloudNetworkingStuff_h */64 #endif /* !FEQT_INCLUDED_SRC_globals_UICloudNetworkingStuff_h */
Note:
See TracChangeset
for help on using the changeset viewer.