OSDN Git Service

web/html_doctype.hpp Add.
authorMyun2 <myun2@nwhite.info>
Sun, 16 Jan 2011 14:15:25 +0000 (23:15 +0900)
committerMyun2 <myun2@nwhite.info>
Sun, 16 Jan 2011 14:15:25 +0000 (23:15 +0900)
roast/include/roast/web/html_doctype.hpp [new file with mode: 0644]

diff --git a/roast/include/roast/web/html_doctype.hpp b/roast/include/roast/web/html_doctype.hpp
new file mode 100644 (file)
index 0000000..15a89cb
--- /dev/null
@@ -0,0 +1,32 @@
+//     Roast+ License
+
+/*
+*/
+#ifndef __SFJP_ROAST__net__web__html_doctype_HPP__
+#define __SFJP_ROAST__net__web__html_doctype_HPP__
+
+namespace roast
+{
+       namespace html
+       {
+               namespace doctype
+               {
+                       //      DOCTYPE
+                       namespace str
+                       {
+                               ROAST_LEXICAL_FIXSTR(doctype, "DOCTYPE");
+                               ROAST_LEXICAL_FIXSTR(html_public, "HTML PUBLIC");
+                               ROAST_LEXICAL_FIXSTR(en, "EN");
+                               
+                               ROAST_LEXICAL_FIXSTR(w3c_dtd_html_401, "-//W3C//DTD HTML 4.01");
+                               ROAST_LEXICAL_FIXSTR(transitional, "Transitional");
+                               ROAST_LEXICAL_FIXSTR(frameset, "Frameset");
+                               ROAST_LEXICAL_FIXSTR(html4_strict_dtd_url, "http://www.w3.org/TR/html4/strict.dtd");
+                               ROAST_LEXICAL_FIXSTR(html4_loose_dtd_url, "http://www.w3.org/TR/html4/loose.dtd");
+                               ROAST_LEXICAL_FIXSTR(html4_frameset_dtd_url, "http://www.w3.org/TR/html4/frameset.dtd");
+                       }
+               }
+       }
+}
+
+#endif//__SFJP_ROAST__net__web__html_doctype_HPP__