ApplianceImpl.h revision f32de6c198a491c28ace2b4c53f8d04a79fd6d69
/* $Id$ */
/** @file
*
* VirtualBox COM class implementation
*/
/*
* Copyright (C) 2006-2009 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;
* 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_APPLIANCEIMPL
#define ____H_APPLIANCEIMPL
/* VBox includes */
#include "VirtualBoxBase.h"
/* VBox forward declarations */
{
// public initializer/uninitializer for internal purposes only
void FinalRelease() { uninit(); }
void uninit();
// for VirtualBoxSupportErrorInfoImpl
/* IAppliance properties */
STDMETHOD(COMGETTER(VirtualSystemDescriptions))(ComSafeArrayOut(IVirtualSystemDescription*, aVirtualSystemDescriptions));
/* IAppliance methods */
/* Import methods */
/* Export methods */
/* public methods only for internal purposes */
/* private instance data */
/** weak VirtualBox parent */
struct Data; // opaque, defined in ApplianceImpl.cpp
Data *m;
void addWarning(const char* aWarning, ...);
struct LocationInfo;
struct TaskOVF;
struct TaskImportOVF; /* Worker threads for import */
struct TaskExportOVF; /* Worker threads for export */
};
{
};
{
// public initializer/uninitializer for internal purposes only
void FinalRelease() { uninit(); }
void uninit();
// for VirtualBoxSupportErrorInfoImpl
/* IVirtualSystemDescription properties */
/* IVirtualSystemDescription methods */
/* public methods only for internal purposes */
const Utf8Str &aOrigValue,
const Utf8Str &aAutoValue,
/* private instance data */
struct Data;
Data *m;
};
#endif // ____H_APPLIANCEIMPL
/* vi: set tabstop=4 shiftwidth=4 expandtab: */