~ubuntu-branches/ubuntu/raring/virtualbox-ose/raring

« back to all changes in this revision

Viewing changes to src/VBox/Main/include/DHCPServerImpl.h

  • Committer: Bazaar Package Importer
  • Author(s): Felix Geyer
  • Date: 2011-01-30 23:27:25 UTC
  • mfrom: (0.3.12 upstream)
  • Revision ID: james.westby@ubuntu.com-20110130232725-2ouajjd2ggdet0zd
Tags: 4.0.2-dfsg-1ubuntu1
* Merge from Debian unstable, remaining changes:
  - Add Apport hook.
    - debian/virtualbox-ose.files/source_virtualbox-ose.py
    - debian/virtualbox-ose.install
  - Drop *-source packages.
* Drop ubuntu-01-fix-build-gcc45.patch, fixed upstream.
* Drop ubuntu-02-as-needed.patch, added to the Debian package.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* $Id: DHCPServerImpl.h $ */
 
1
/* $Id: DHCPServerImpl.h 30764 2010-07-09 14:12:12Z vboxsync $ */
2
2
 
3
3
/** @file
4
4
 *
33
33
 
34
34
class ATL_NO_VTABLE DHCPServer :
35
35
    public VirtualBoxBase,
36
 
    public VirtualBoxSupportErrorInfoImpl<DHCPServer, IDHCPServer>,
37
 
    public VirtualBoxSupportTranslation<DHCPServer>,
38
36
    VBOX_SCRIPTABLE_IMPL(IDHCPServer)
39
37
{
40
38
public:
41
39
 
42
 
    VIRTUALBOXBASE_ADD_ERRORINFO_SUPPORT (DHCPServer)
 
40
    VIRTUALBOXBASE_ADD_ERRORINFO_SUPPORT(DHCPServer, IDHCPServer)
43
41
 
44
42
    DECLARE_NOT_AGGREGATABLE (DHCPServer)
45
43
 
78
76
    STDMETHOD(Start)(IN_BSTR aNetworkName, IN_BSTR aTrunkName, IN_BSTR aTrunkType);
79
77
    STDMETHOD(Stop)();
80
78
 
81
 
    // for VirtualBoxSupportErrorInfoImpl
82
 
    static const wchar_t *getComponentName() { return L"DHCPServer"; }
83
 
 
84
79
private:
85
80
    /** weak VirtualBox parent */
86
81
    VirtualBox * const      mVirtualBox;