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