00001 /* 00002 * libsgml -- SGML state machine parsing library. 00003 * 00004 * Copyright (c) 2002 Uninformed Research (http://www.uninformed.org) 00005 * All rights reserved. 00006 * 00007 * skape 00008 * [email protected] 00009 */ 00018 #ifndef _LIBSGML_DOMDOCUMENT_H 00019 #define _LIBSGML_DOMDOCUMENT_H 00020 00021 #ifdef __cplusplus 00022 extern "C" { 00023 #endif 00024 00025 #include "DomNode.h" 00026 00032 #define DOM_DOCUMENT DOM_NODE 00033 00039 DOM_DOCUMENT *domDocumentNew(); 00045 void domDocumentDestroy(DOM_DOCUMENT *doc); 00046 00051 #ifdef __cplusplus 00052 } 00053 #endif 00054 00055 #endif