1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3  * This Source Code Form is subject to the terms of the Mozilla Public
4  * License, v. 2.0. If a copy of the MPL was not distributed with this
5  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
6  */
7 
8 #ifndef ORCUS_XLS_XML_NAMESPACE_TYPES_HPP
9 #define ORCUS_XLS_XML_NAMESPACE_TYPES_HPP
10 
11 #include "orcus/types.hpp"
12 
13 namespace orcus {
14 
15 extern const xmlns_id_t NS_xls_xml_ss;
16 extern const xmlns_id_t NS_xls_xml_o;
17 extern const xmlns_id_t NS_xls_xml_x;
18 extern const xmlns_id_t NS_xls_xml_html;
19 
20 /**
21  * Null-terminated array of all xls xml namespaces.
22  */
23 extern const xmlns_id_t* NS_xls_xml_all;
24 
25 }
26 
27 #endif
28 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
29