VirtualBox

source: vbox/trunk/src/VBox/Main/include/CloudUserProfileManagerImpl.h@ 73551

Last change on this file since 73551 was 73551, checked in by vboxsync, 7 years ago

VBOX_WITH_CLOUD_PROVIDERS_IN_EXTPACK (bugref:9152)

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 1.7 KB
Line 
1/* $Id: CloudUserProfileManagerImpl.h 73551 2018-08-07 16:41:59Z vboxsync $ */
2/** @file
3 * VirtualBox COM class implementation
4 */
5
6/*
7 * Copyright (C) 2006-2018 Oracle Corporation
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.virtualbox.org. This file is free software;
11 * you can redistribute it and/or modify it under the terms of the GNU
12 * General Public License (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16 */
17
18
19#ifndef ____H_CLOUDUSERPROFILEMANAGERIMPL
20#define ____H_CLOUDUSERPROFILEMANAGERIMPL
21
22/* VBox includes */
23#include "CloudUserProfileManagerWrap.h"
24#include "CloudUserProfilesImpl.h"
25
26/* VBox forward declarations */
27
28class ATL_NO_VTABLE CloudUserProfileManager
29 : public CloudUserProfileManagerWrap
30{
31public:
32
33 DECLARE_EMPTY_CTOR_DTOR(CloudUserProfileManager)
34
35 HRESULT FinalConstruct();
36 void FinalRelease();
37
38 HRESULT init(VirtualBox *aVirtualBox);
39 void uninit();
40
41private:
42 ComPtr<VirtualBox> const mParent; /**< Strong reference to the parent object (VirtualBox/IMachine). */
43#ifdef VBOX_WITH_CLOUD_PROVIDERS_IN_EXTPACK
44 std::vector<ComPtr<ICloudUserProfileManager>> mUserProfileManagers;
45#else
46 std::vector<CloudProviderId_T> mSupportedProviders;
47#endif
48
49 HRESULT getSupportedProviders(std::vector<CloudProviderId_T> &aProviderTypes);
50 HRESULT getAllProfiles(std::vector< ComPtr<ICloudUserProfiles> > &aProfilesList);
51 HRESULT getProfilesByProvider(CloudProviderId_T aProviderType, ComPtr<ICloudUserProfiles> &aProfiles);
52};
53
54#endif // !____H_CLOUDUSERPROFILEMANAGERIMPL
55/* vi: set tabstop=4 shiftwidth=4 expandtab: */
56
Note: See TracBrowser for help on using the repository browser.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette