VirtualBox

source: vbox/trunk/src/VBox/Main/include/CloudNetworkImpl.h@ 94521

Last change on this file since 94521 was 93115, checked in by vboxsync, 2 years ago

scm --update-copyright-year

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.0 KB
Line 
1/* $Id: CloudNetworkImpl.h 93115 2022-01-01 11:31:46Z vboxsync $ */
2/** @file
3 * ICloudNetwork implementation header, lives in VBoxSVC.
4 */
5
6/*
7 * Copyright (C) 2019-2022 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#ifndef MAIN_INCLUDED_CloudNetworkImpl_h
19#define MAIN_INCLUDED_CloudNetworkImpl_h
20#ifndef RT_WITHOUT_PRAGMA_ONCE
21# pragma once
22#endif
23
24#include "CloudNetworkWrap.h"
25
26namespace settings
27{
28 struct CloudNetwork;
29}
30
31class ATL_NO_VTABLE CloudNetwork :
32 public CloudNetworkWrap
33{
34public:
35
36 DECLARE_COMMON_CLASS_METHODS(CloudNetwork)
37
38 HRESULT FinalConstruct();
39 void FinalRelease();
40
41 HRESULT init(VirtualBox *aVirtualBox, com::Utf8Str aName);
42 HRESULT i_loadSettings(const settings::CloudNetwork &data);
43 void uninit();
44 HRESULT i_saveSettings(settings::CloudNetwork &data);
45
46 // Internal methods
47 Utf8Str i_getNetworkName();
48 Utf8Str i_getProvider();
49 Utf8Str i_getProfile();
50 Utf8Str i_getNetworkId();
51private:
52
53 // Wrapped ICloudNetwork properties
54 HRESULT getNetworkName(com::Utf8Str &aNetworkName);
55 HRESULT setNetworkName(const com::Utf8Str &aNetworkName);
56 HRESULT getEnabled(BOOL *aEnabled);
57 HRESULT setEnabled(BOOL aEnabled);
58 HRESULT getProvider(com::Utf8Str &aProvider);
59 HRESULT setProvider(const com::Utf8Str &aProvider);
60 HRESULT getProfile(com::Utf8Str &aProfile);
61 HRESULT setProfile(const com::Utf8Str &aProfile);
62 HRESULT getNetworkId(com::Utf8Str &aNetworkId);
63 HRESULT setNetworkId(const com::Utf8Str &aNetworkId);
64
65 struct Data;
66 Data *m;
67};
68
69#endif /* !MAIN_INCLUDED_CloudNetworkImpl_h */
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use