Move header files into include directory

This commit is contained in:
iska
2016-08-27 01:59:53 +02:00
parent a440fd56b2
commit e56a980e80
59 changed files with 58 additions and 66 deletions
+23
View File
@@ -0,0 +1,23 @@
//
// HTMLNamespaces.h
// HTMLKit
//
// Created by Iska on 03/11/14.
// Copyright (c) 2014 BrainCookie. All rights reserved.
//
/**
HTML Namespaces
https://html.spec.whatwg.org/multipage/infrastructure.html#namespaces
*/
typedef NS_ENUM(NSInteger, HTMLNamespace)
{
/** The default HTML namespace. */
HTMLNamespaceHTML,
/** The namespace for most of the <math> elements. */
HTMLNamespaceMathML,
/** The namespace for most of the <svg> elements. */
HTMLNamespaceSVG
};