VirtualBox

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

Last change on this file since 86506 was 82968, checked in by vboxsync, 4 years ago

Copyright year updates by scm.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 1.9 KB
Line 
1/* $Id: PCIDeviceAttachmentImpl.h 82968 2020-02-04 10:35:17Z vboxsync $ */
2
3/** @file
4 *
5 * PCI attachment information implmentation.
6 */
7
8/*
9 * Copyright (C) 2010-2020 Oracle Corporation
10 *
11 * This file is part of VirtualBox Open Source Edition (OSE), as
12 * available from http://www.virtualbox.org. This file is free software;
13 * you can redistribute it and/or modify it under the terms of the GNU
14 * General Public License (GPL) as published by the Free Software
15 * Foundation, in version 2 as it comes in the "COPYING" file of the
16 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
17 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
18 */
19
20#ifndef MAIN_INCLUDED_PCIDeviceAttachmentImpl_h
21#define MAIN_INCLUDED_PCIDeviceAttachmentImpl_h
22#ifndef RT_WITHOUT_PRAGMA_ONCE
23# pragma once
24#endif
25
26#include "PCIDeviceAttachmentWrap.h"
27
28namespace settings
29{
30 struct HostPCIDeviceAttachment;
31}
32
33class ATL_NO_VTABLE PCIDeviceAttachment :
34 public PCIDeviceAttachmentWrap
35{
36public:
37
38 DECLARE_EMPTY_CTOR_DTOR(PCIDeviceAttachment)
39
40 // public initializer/uninitializer for internal purposes only
41 HRESULT init(IMachine * aParent,
42 const Utf8Str &aDevName,
43 LONG aHostAddess,
44 LONG aGuestAddress,
45 BOOL fPhysical);
46 HRESULT initCopy(IMachine *aParent, PCIDeviceAttachment *aThat);
47 void uninit();
48
49 // settings
50 HRESULT i_loadSettings(IMachine * aParent,
51 const settings::HostPCIDeviceAttachment& aHpda);
52 HRESULT i_saveSettings(settings::HostPCIDeviceAttachment &data);
53
54 HRESULT FinalConstruct();
55 void FinalRelease();
56
57private:
58
59 // wrapped IPCIDeviceAttachment properties
60 HRESULT getName(com::Utf8Str &aName);
61 HRESULT getIsPhysicalDevice(BOOL *aIsPhysicalDevice);
62 HRESULT getHostAddress(LONG *aHostAddress);
63 HRESULT getGuestAddress(LONG *aGuestAddress);
64
65 struct Data;
66 Data* m;
67};
68
69#endif /* !MAIN_INCLUDED_PCIDeviceAttachmentImpl_h */
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use