xmlsecurityengine/xmlsec/inc/xmlsec_membuf.h
changeset 0 e35f40988205
child 24 74f0b3eb154c
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/xmlsecurityengine/xmlsec/inc/xmlsec_membuf.h	Thu Dec 17 09:29:21 2009 +0200
@@ -0,0 +1,45 @@
+/** 
+ * XML Security Library (http://www.aleksey.com/xmlsec).
+ *
+ * Memory buffer transform
+ *
+ * This is free software; see Copyright file in the source
+ * distribution for preciese wording.
+ * 
+ * Copyright (C) 2002-2003 Aleksey Sanin <aleksey@aleksey.com>
+ * Portion Copyright © 2009 Nokia Corporation and/or its subsidiary(-ies). All rights reserved. 
+ */
+#ifndef __XMLSEC_MEMBUF_H__
+#define __XMLSEC_MEMBUF_H__    
+
+#ifdef __cplusplus
+extern "C" {
+#endif /* __cplusplus */ 
+
+#include <libxml2_tree.h>
+#include "xmlsec_config.h"
+#include "xmlsec_xmlsec.h"
+#include "xmlsec_buffer.h"
+#include "xmlsec_transforms.h"
+
+/********************************************************************
+ *
+ * Memory Buffer transform 
+ *
+ *******************************************************************/
+/**
+ * xmlSecTransformMemBufId:
+ * 
+ * The Memory Buffer transform klass.
+ */
+#define xmlSecTransformMemBufId \
+	xmlSecTransformMemBufGetKlass()
+XMLSEC_EXPORT xmlSecTransformId	xmlSecTransformMemBufGetKlass		(void);
+XMLSEC_EXPORT xmlSecBufferPtr	xmlSecTransformMemBufGetBuffer		(xmlSecTransformPtr transform);
+
+#ifdef __cplusplus
+}
+#endif /* __cplusplus */
+
+#endif /* __XMLSEC_MEMBUF_H__ */
+