1 | /** @file
|
---|
2 | *
|
---|
3 | * VirtualBox XML utility class declaration
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2006-2007 innotek GmbH
|
---|
8 | *
|
---|
9 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
10 | * available from http://www.virtualbox.org. This file is free software;
|
---|
11 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
12 | * General Public License as published by the Free Software Foundation,
|
---|
13 | * in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
|
---|
14 | * distribution. VirtualBox OSE is distributed in the hope that it will
|
---|
15 | * be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | *
|
---|
17 | * If you received this file as part of a commercial VirtualBox
|
---|
18 | * distribution, then only the terms of your commercial VirtualBox
|
---|
19 | * license agreement apply instead of the previous paragraph.
|
---|
20 | */
|
---|
21 |
|
---|
22 | #ifndef ____H_VIRTUALBOXXMLUTIL
|
---|
23 | #define ____H_VIRTUALBOXXMLUTIL
|
---|
24 |
|
---|
25 | // for BSTR referred from VBox/cfgldr.h
|
---|
26 | #include "VBox/com/defs.h"
|
---|
27 |
|
---|
28 | #include <VBox/cdefs.h>
|
---|
29 | #include <VBox/cfgldr.h>
|
---|
30 | #include <iprt/file.h>
|
---|
31 |
|
---|
32 | /** VirtualBox XML settings namespace */
|
---|
33 | #define VBOX_XML_NAMESPACE "http://www.innotek.de/VirtualBox-settings"
|
---|
34 |
|
---|
35 | #define VBOX_XML_VERSION "1.2"
|
---|
36 |
|
---|
37 | /** VirtualBox XML settings version string */
|
---|
38 | #if defined (__WIN__)
|
---|
39 | # define VBOX_XML_PLATFORM "windows"
|
---|
40 | #elif defined (__LINUX__)
|
---|
41 | # define VBOX_XML_PLATFORM "linux"
|
---|
42 | #elif defined (__DARWIN__)
|
---|
43 | # define VBOX_XML_PLATFORM "macosx"
|
---|
44 | #elif defined (__OS2__)
|
---|
45 | # define VBOX_XML_PLATFORM "os2"
|
---|
46 | #else
|
---|
47 | # error Unsupported platform!
|
---|
48 | #endif
|
---|
49 |
|
---|
50 | /** VirtualBox XML common settings version string */
|
---|
51 | #define VBOX_XML_PLATFORM_COMMON "common"
|
---|
52 |
|
---|
53 | /** VirtualBox XML settings schema file */
|
---|
54 | #define VBOX_XML_SCHEMA "VirtualBox-settings-" VBOX_XML_PLATFORM ".xsd"
|
---|
55 | #define VBOX_XML_SCHEMA_COMMON "VirtualBox-settings-" VBOX_XML_PLATFORM_COMMON ".xsd"
|
---|
56 |
|
---|
57 | class VirtualBoxXMLUtil
|
---|
58 | {
|
---|
59 | protected:
|
---|
60 |
|
---|
61 | static DECLCALLBACK(int) cfgLdrEntityResolver (const char *pcszPublicId,
|
---|
62 | const char *pcszSystemId,
|
---|
63 | const char *pcszBaseURI,
|
---|
64 | PCFGLDRENTITY pEntity);
|
---|
65 |
|
---|
66 | /** VirtualBox XML settings "namespace schema" pair */
|
---|
67 | static const char *XmlSchemaNS;
|
---|
68 | };
|
---|
69 |
|
---|
70 |
|
---|
71 | #endif // ____H_VIRTUALBOXXMLUTIL
|
---|
72 |
|
---|