VirtualBox

source: vbox/trunk/src/VBox/Main/include/ParallelPortImpl.h@ 48701

Last change on this file since 48701 was 41214, checked in by vboxsync, 13 years ago

Main: move handleUnexpectedExceptions method to VirtualBoxBase

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.5 KB
Line 
1/* $Id: ParallelPortImpl.h 41214 2012-05-08 17:59:43Z vboxsync $ */
2
3/** @file
4 * VirtualBox COM class implementation.
5 */
6
7/*
8 * Copyright (C) 2006-2012 Oracle Corporation
9 *
10 * This file is part of VirtualBox Open Source Edition (OSE), as
11 * available from http://www.virtualbox.org. This file is free software;
12 * you can redistribute it and/or modify it under the terms of the GNU
13 * General Public License (GPL) as published by the Free Software
14 * Foundation, in version 2 as it comes in the "COPYING" file of the
15 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
16 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
17 */
18
19#ifndef ____H_PARALLELPORTIMPL
20#define ____H_PARALLELPORTIMPL
21
22#include "VirtualBoxBase.h"
23
24namespace settings
25{
26 struct ParallelPort;
27}
28
29class ATL_NO_VTABLE ParallelPort :
30 public VirtualBoxBase,
31 VBOX_SCRIPTABLE_IMPL(IParallelPort)
32{
33public:
34 VIRTUALBOXBASE_ADD_ERRORINFO_SUPPORT(ParallelPort, IParallelPort)
35
36 DECLARE_NOT_AGGREGATABLE(ParallelPort)
37
38 DECLARE_PROTECT_FINAL_CONSTRUCT()
39
40 BEGIN_COM_MAP(ParallelPort)
41 VBOX_DEFAULT_INTERFACE_ENTRIES (IParallelPort)
42 END_COM_MAP()
43
44 ParallelPort() {}
45 ~ParallelPort() {}
46
47 HRESULT FinalConstruct();
48 void FinalRelease();
49
50 // public initializer/uninitializer for internal purposes only
51 HRESULT init (Machine *aParent, ULONG aSlot);
52 HRESULT init (Machine *aParent, ParallelPort *aThat);
53 HRESULT initCopy (Machine *parent, ParallelPort *aThat);
54 void uninit();
55
56 // IParallelPort properties
57 STDMETHOD(COMGETTER(Slot)) (ULONG *aSlot);
58 STDMETHOD(COMGETTER(Enabled)) (BOOL *aEnabled);
59 STDMETHOD(COMSETTER(Enabled)) (BOOL aEnabled);
60 STDMETHOD(COMGETTER(IRQ)) (ULONG *aIRQ);
61 STDMETHOD(COMSETTER(IRQ)) (ULONG aIRQ);
62 STDMETHOD(COMGETTER(IOBase)) (ULONG *aIOBase);
63 STDMETHOD(COMSETTER(IOBase)) (ULONG aIOBase);
64 STDMETHOD(COMGETTER(Path)) (BSTR *aPath);
65 STDMETHOD(COMSETTER(Path)) (IN_BSTR aPath);
66
67 // public methods only for internal purposes
68
69 HRESULT loadSettings(const settings::ParallelPort &data);
70 HRESULT saveSettings(settings::ParallelPort &data);
71
72 bool isModified();
73 void rollback();
74 void commit();
75 void copyFrom(ParallelPort *aThat);
76
77 // public methods for internal purposes only
78 // (ensure there is a caller and a read lock before calling them!)
79
80private:
81 HRESULT checkSetPath(const Utf8Str &str);
82
83 struct Data;
84 Data *m;
85};
86
87#endif // ____H_PARALLELPORTIMPL
88/* vi: set tabstop=4 shiftwidth=4 expandtab: */
Note: See TracBrowser for help on using the repository browser.

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