HostFloppyDriveImpl.h revision 5959d7e4b51fd1cc749cfe16e35d8c7798c46a57
/** @file
*
* VirtualBox COM class implementation
*/
/*
* Copyright (C) 2006-2007 Sun Microsystems, Inc.
*
* This file is part of VirtualBox Open Source Edition (OSE), as
* available from http://www.virtualbox.org. This file is free software;
* you can redistribute it and/or modify it under the terms of the GNU
* General Public License (GPL) as published by the Free Software
* Foundation, in version 2 as it comes in the "COPYING" file of the
* VirtualBox OSE distribution. VirtualBox OSE is distributed in the
* hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
*
* Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
* Clara, CA 95054 USA or visit http://www.sun.com if you need
* additional information or have any questions.
*/
#ifndef ____H_HOSTFLOPPYDRIVEIMPL
#define ____H_HOSTFLOPPYDRIVEIMPL
#include "VirtualBoxBase.h"
class ATL_NO_VTABLE HostFloppyDrive :
public VirtualBoxBaseNEXT,
public VirtualBoxSupportErrorInfoImpl <HostFloppyDrive, IHostFloppyDrive>,
public VirtualBoxSupportTranslation <HostFloppyDrive>,
VBOX_SCRIPTABLE_IMPL(IHostFloppyDrive)
{
public:
VIRTUALBOXBASE_ADD_ERRORINFO_SUPPORT (HostFloppyDrive)
DECLARE_NOT_AGGREGATABLE (HostFloppyDrive)
DECLARE_PROTECT_FINAL_CONSTRUCT()
BEGIN_COM_MAP(HostFloppyDrive)
COM_INTERFACE_ENTRY(ISupportErrorInfo)
COM_INTERFACE_ENTRY(IHostFloppyDrive)
COM_INTERFACE_ENTRY(IDispatch)
END_COM_MAP()
NS_DECL_ISUPPORTS
DECLARE_EMPTY_CTOR_DTOR (HostFloppyDrive)
HRESULT FinalConstruct();
void FinalRelease();
// public initializer/uninitializer for internal purposes only
HRESULT init (IN_BSTR aName, IN_BSTR aUdi = NULL,
IN_BSTR aDescription = NULL);
void uninit();
// IHostFloppyDrive properties
STDMETHOD(COMGETTER(Name)) (BSTR *aName);
STDMETHOD(COMGETTER(Description)) (BSTR *aDescription);
STDMETHOD(COMGETTER(Udi)) (BSTR *aUdi);
// public methods for internal purposes only
/* @note Must be called from under the object read lock. */
const Bstr &name() const { return mName; }
/* @note Must be called from under the object read lock. */
const Bstr &udi() const { return mUdi; }
/* @note Must be called from under the object read lock. */
const Bstr &description() const { return mDescription; }
// for VirtualBoxSupportErrorInfoImpl
static const wchar_t *getComponentName() { return L"HostFloppyDrive"; }
private:
const Bstr mName;
const Bstr mDescription;
const Bstr mUdi;
};
#endif // ____H_HOSTFLOPPYDRIVEIMPL
/* vi: set tabstop=4 shiftwidth=4 expandtab: */