From f6e2f0db73a43535907c7086092c1509bbe5cbea Mon Sep 17 00:00:00 2001 From: Ray Speth Date: Thu, 12 Nov 2015 15:39:46 -0500 Subject: [PATCH] Remove accidentally-added header file --- include/cantera/matlab.h | 33 --------------------------------- 1 file changed, 33 deletions(-) delete mode 100644 include/cantera/matlab.h diff --git a/include/cantera/matlab.h b/include/cantera/matlab.h deleted file mode 100644 index d19ac932c..000000000 --- a/include/cantera/matlab.h +++ /dev/null @@ -1,33 +0,0 @@ -/** - * @file ctxml.h - */ -#ifndef CTC_XML_H -#define CTC_XML_H - -#include - -int xml_new(const char* name); -int xml_get_XML_File(const char* file, int debug); -int xml_del(int i); -int xml_clear(); -int xml_copy(int i); -int xml_build(int i, const char* file); -int xml_preprocess_and_build(int i, const char* file, int debug); -int xml_attrib(int i, const char* key, char* value); -int xml_addAttrib(int i, const char* key, const char* value); -int xml_addComment(int i, const char* comment); -int xml_value(int i, char* value); -int xml_tag(int i, char* tag); -int xml_child(int i, const char* loc); -int xml_child_bynumber(int i, int m); -int xml_findID(int i, const char* id); -int xml_findByName(int i, const char* nm); -int xml_nChildren(int i); -int xml_addChild(int i, const char* name, const char* value); -int xml_addChildNode(int i, int j); -int xml_write(int i, const char* file); -int xml_removeChild(int i, int j); -int ctml_getFloatArray(int i, size_t n, double* data, int iconvert); - -#endif -