]> granicus.if.org Git - imagemagick/blobdiff - MagickCore/xml-tree.h
(no commit message)
[imagemagick] / MagickCore / xml-tree.h
index 64a4053159d2f1a2abfa6698bfc9a7351d33f5a1..1ad11c8c1c2372b89aac0e7982a548583473f55b 100644 (file)
@@ -1,5 +1,5 @@
 /*
-  Copyright 1999-2011 ImageMagick Studio LLC, a non-profit organization
+  Copyright 1999-2012 ImageMagick Studio LLC, a non-profit organization
   dedicated to making software imaging solutions freely available.
 
   You may not use this file except in compliance with the License.
 extern "C" {
 #endif
 
-#include <MagickCore/exception.h>
-#include <MagickCore/splay-tree.h>
-
 typedef struct _XMLTreeInfo
   XMLTreeInfo;
 
 extern MagickExport char
-  *CanonicalXMLContent(const char *,const MagickBooleanType),
   *XMLTreeInfoToXML(XMLTreeInfo *);
 
 extern MagickExport const char
   *GetXMLTreeAttribute(XMLTreeInfo *,const char *),
   *GetXMLTreeContent(XMLTreeInfo *),
-  **GetXMLTreeProcessingInstructions(XMLTreeInfo *,const char *),
   *GetXMLTreeTag(XMLTreeInfo *);
 
-extern MagickExport MagickBooleanType
-  GetXMLTreeAttributes(const XMLTreeInfo *,SplayTreeInfo *);
-
 extern MagickExport XMLTreeInfo
   *AddChildToXMLTree(XMLTreeInfo *,const char *,const size_t),
-  *AddPathToXMLTree(XMLTreeInfo *,const char *,const size_t),
   *DestroyXMLTree(XMLTreeInfo *),
   *GetNextXMLTreeTag(XMLTreeInfo *),
   *GetXMLTreeChild(XMLTreeInfo *,const char *),
-  *GetXMLTreeOrdered(XMLTreeInfo *),
-  *GetXMLTreePath(XMLTreeInfo *,const char *),
   *GetXMLTreeSibling(XMLTreeInfo *),
-  *InsertTagIntoXMLTree(XMLTreeInfo *,XMLTreeInfo *,const size_t),
   *NewXMLTree(const char *,ExceptionInfo *),
   *NewXMLTreeTag(const char *),
-  *ParseTagFromXMLTree(XMLTreeInfo *),
-  *PruneTagFromXMLTree(XMLTreeInfo *),
-  *SetXMLTreeAttribute(XMLTreeInfo *,const char *,const char *),
   *SetXMLTreeContent(XMLTreeInfo *,const char *);
 
 #if defined(__cplusplus) || defined(c_plusplus)