00001 /* gld_load.h 00002 * 00003 * Authors: 00004 * Matthew Hauer <matthew.hauer@pnl.gov>, 6 Nov 07 - 00005 * 00006 * Versions: 00007 * 1.0 - MH - initial version 00008 * 00009 * Credits: 00010 * adapted from SAX2Print.h 00011 * 00012 * @file load_xml.h 00013 * @addtogroup load XML file loader 00014 * @ingroup core 00015 * 00016 */ 00017 00018 #ifndef _XML_LOAD_H_ 00019 #define _XML_LOAD_H_ 00020 00021 #include <string.h> 00022 #include <stdio.h> 00023 #include <stdlib.h> 00024 00025 #ifdef __cplusplus 00026 extern "C" { 00027 #include "output.h" 00028 00029 int loadall_xml(char *file); 00030 } 00031 #else 00032 int loadall_xml(char *file); 00033 #endif 00034 00035 #endif 00036 00037 /* EOF */