VirtualBox

source: vbox/trunk/src/VBox/Main/include/PCIDeviceAttachmentImpl.h@ 96407

Last change on this file since 96407 was 96407, checked in by vboxsync, 22 months ago

scm copyright and license note update

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.2 KB
RevLine 
[34308]1/* $Id: PCIDeviceAttachmentImpl.h 96407 2022-08-22 17:43:14Z vboxsync $ */
2
3/** @file
4 *
5 * PCI attachment information implmentation.
6 */
7
8/*
[96407]9 * Copyright (C) 2010-2022 Oracle and/or its affiliates.
[34308]10 *
[96407]11 * This file is part of VirtualBox base platform packages, as
12 * available from https://www.virtualbox.org.
13 *
14 * This program is free software; you can redistribute it and/or
15 * modify it under the terms of the GNU General Public License
16 * as published by the Free Software Foundation, in version 3 of the
17 * License.
18 *
19 * This program is distributed in the hope that it will be useful, but
20 * WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
22 * General Public License for more details.
23 *
24 * You should have received a copy of the GNU General Public License
25 * along with this program; if not, see <https://www.gnu.org/licenses>.
26 *
27 * SPDX-License-Identifier: GPL-3.0-only
[34308]28 */
29
[76562]30#ifndef MAIN_INCLUDED_PCIDeviceAttachmentImpl_h
31#define MAIN_INCLUDED_PCIDeviceAttachmentImpl_h
[76487]32#ifndef RT_WITHOUT_PRAGMA_ONCE
33# pragma once
34#endif
[34308]35
[50922]36#include "PCIDeviceAttachmentWrap.h"
[34308]37
[61009]38namespace settings
39{
40 struct HostPCIDeviceAttachment;
41}
42
[42551]43class ATL_NO_VTABLE PCIDeviceAttachment :
[50922]44 public PCIDeviceAttachmentWrap
[34308]45{
46public:
47
[90828]48 DECLARE_COMMON_CLASS_METHODS(PCIDeviceAttachment)
[34308]49
50 // public initializer/uninitializer for internal purposes only
[35684]51 HRESULT init(IMachine * aParent,
[65088]52 const Utf8Str &aDevName,
[34308]53 LONG aHostAddess,
54 LONG aGuestAddress,
55 BOOL fPhysical);
[66046]56 HRESULT initCopy(IMachine *aParent, PCIDeviceAttachment *aThat);
[34308]57 void uninit();
58
[35885]59 // settings
[50922]60 HRESULT i_loadSettings(IMachine * aParent,
61 const settings::HostPCIDeviceAttachment& aHpda);
62 HRESULT i_saveSettings(settings::HostPCIDeviceAttachment &data);
[35885]63
[34308]64 HRESULT FinalConstruct();
65 void FinalRelease();
66
[50922]67private:
[34331]68
[50922]69 // wrapped IPCIDeviceAttachment properties
70 HRESULT getName(com::Utf8Str &aName);
71 HRESULT getIsPhysicalDevice(BOOL *aIsPhysicalDevice);
72 HRESULT getHostAddress(LONG *aHostAddress);
73 HRESULT getGuestAddress(LONG *aGuestAddress);
74
[34308]75 struct Data;
[35885]76 Data* m;
[34308]77};
78
[76562]79#endif /* !MAIN_INCLUDED_PCIDeviceAttachmentImpl_h */
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use