Add enum for HTML Namespaces

This commit is contained in:
iska
2014-11-08 02:08:42 +01:00
parent 2d6889878b
commit a59fec42e7
2 changed files with 19 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
//
// HTMLNamespaces.h
// HTMLKit
//
// Created by Iska on 03/11/14.
// Copyright (c) 2014 BrainCookie. All rights reserved.
//
typedef NS_ENUM(NSInteger, HTMLNamespace)
{
HTMLNamespaceHTML,
HTMLNamespaceMathML,
HTMLNamespaceSVG,
HTMLNamespaceXLink,
HTMLNamespaceXML,
HTMLNamespaceXMLNS,
};