VirtualBox

source: vbox/trunk/src/VBox/Main/include/AudioAdapterImpl.h@ 50919

Last change on this file since 50919 was 49874, checked in by vboxsync, 11 years ago

Main: fix Windows host warnings, hide internal data.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.0 KB
Line 
1/* $Id: AudioAdapterImpl.h 49874 2013-12-11 12:28:07Z vboxsync $ */
2
3/** @file
4 *
5 * VirtualBox COM class implementation
6 */
7
8/*
9 * Copyright (C) 2006-2013 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 ____H_AUDIOADAPTER
21#define ____H_AUDIOADAPTER
22
23#include "AudioAdapterWrap.h"
24namespace settings
25{
26 struct AudioAdapter;
27}
28
29class ATL_NO_VTABLE AudioAdapter :
30 public AudioAdapterWrap
31{
32public:
33
34 DECLARE_EMPTY_CTOR_DTOR (AudioAdapter)
35
36 HRESULT FinalConstruct();
37 void FinalRelease();
38
39 // public initializer/uninitializer for internal purposes only
40 HRESULT init(Machine *aParent);
41 HRESULT init(Machine *aParent, AudioAdapter *aThat);
42 HRESULT initCopy(Machine *aParent, AudioAdapter *aThat);
43 void uninit();
44
45
46 // public methods only for internal purposes
47 HRESULT i_loadSettings(const settings::AudioAdapter &data);
48 HRESULT i_saveSettings(settings::AudioAdapter &data);
49
50 void i_rollback();
51 void i_commit();
52 void i_copyFrom(AudioAdapter *aThat);
53
54private:
55
56 // wrapped IAudioAdapter properties
57 HRESULT getEnabled(BOOL *aEnabled);
58 HRESULT setEnabled(BOOL aEnabled);
59 HRESULT getAudioDriver(AudioDriverType_T *aAudioDriver);
60 HRESULT setAudioDriver(AudioDriverType_T aAudioDriver);
61 HRESULT getAudioController(AudioControllerType_T *aAudioController);
62 HRESULT setAudioController(AudioControllerType_T aAudioController);
63
64 Machine * const mParent;
65 const ComObjPtr<AudioAdapter> mPeer;
66 struct Data;
67 Data *mData;
68};
69
70#endif // ____H_AUDIOADAPTER
71/* 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