/** @file * * VirtualBox XML utility class declaration */ /* * Copyright (C) 2006-2007 innotek GmbH * * 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 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. * * If you received this file as part of a commercial VirtualBox * distribution, then only the terms of your commercial VirtualBox * license agreement apply instead of the previous paragraph. */ #ifndef ____H_VIRTUALBOXXMLUTIL #define ____H_VIRTUALBOXXMLUTIL // for BSTR referred from VBox/cfgldr.h #include "VBox/com/defs.h" #include #include #include /** VirtualBox XML settings namespace */ #define VBOX_XML_NAMESPACE "http://www.innotek.de/VirtualBox-settings" #define VBOX_XML_VERSION "1.2" /** VirtualBox XML settings version string */ #if defined (__WIN__) # define VBOX_XML_PLATFORM "windows" #elif defined (__LINUX__) # define VBOX_XML_PLATFORM "linux" #elif defined (__DARWIN__) # define VBOX_XML_PLATFORM "macosx" #else # error Unsupported platform! #endif /** VirtualBox XML common settings version string */ #define VBOX_XML_PLATFORM_COMMON "common" /** VirtualBox XML settings schema file */ #define VBOX_XML_SCHEMA "VirtualBox-settings-" VBOX_XML_PLATFORM ".xsd" #define VBOX_XML_SCHEMA_COMMON "VirtualBox-settings-" VBOX_XML_PLATFORM_COMMON ".xsd" class VirtualBoxXMLUtil { protected: static DECLCALLBACK(int) cfgLdrEntityResolver (const char *pcszPublicId, const char *pcszSystemId, const char *pcszBaseURI, PCFGLDRENTITY pEntity); /** VirtualBox XML settings "namespace schema" pair */ static const char *XmlSchemaNS; }; #endif // ____H_VIRTUALBOXXMLUTIL