-
-
Notifications
You must be signed in to change notification settings - Fork 135
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
web-base: Added namespace definitions.
- Loading branch information
1 parent
7652ffe
commit a35c264
Showing
2 changed files
with
17 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
NAMESPACE(HTML, "http://www.w3.org/1999/xhtml") | ||
NAMESPACE(MathML, "http://www.w3.org/1998/Math/MathML") | ||
NAMESPACE(SVG, "http://www.w3.org/2000/svg") | ||
NAMESPACE(XLink, "http://www.w3.org/1999/xlink") | ||
NAMESPACE(XML, "http://www.w3.org/XML/1998/namespace") | ||
NAMESPACE(XMLNS, "http://www.w3.org/2000/xmlns/") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
#pragma once | ||
|
||
namespace Web { | ||
|
||
enum struct Namespace { | ||
#define NAMESPACE(IDENT, _) IDENT, | ||
#include "defs/namespaces.inc" | ||
#undef NAMESPACE | ||
}; | ||
|
||
} // namespace Web |