File:  [Public] / DOM / DocumentFragment.h
Revision 1.1: download - view: text, annotated - select for diffs
Mon Jun 15 01:23:53 1998 UTC (26 years ago) by daniel
Branches: MAIN
CVS tags: HEAD
Again, more coding on core elements, Daniel.

/*
 * DocumentFragment.h : interfaces of the DocumentFragment interface as
                       defined by
 *       Document Object Model (Core) Level 1
 *       http://www.w3.org/TR/WD-DOM/level-one-core.html
 * 
 * Daniel.Veillard@w3.org
 *
 * $Id: DocumentFragment.h,v 1.1 1998/06/15 01:23:53 daniel Exp $
 */

#ifndef __DOM_DOCUMENTFRAGMENT_H__
#define __DOM_DOCUMENTFRAGMENT_H__

#include "Document.h"
#include "Node.h"

/*
 * Constants
 */

/*
 * Structure
 */
typedef struct domDocumentFragment {
    domDocumentPtr masterDoc;		/* The full DOM document */

    /* private */
    domNodePtr currentNode;		/* the current Node element */
} domDocumentFragment, * domDocumentFragmentPtr;

/*
 * Functions
 */

#endif /* __DOM_DOCUMENTFRAGMENT_H__ */



Webmaster