1#ifndef COIN_SCXMLDOCUMENT_H
2#define COIN_SCXMLDOCUMENT_H
36#include <Inventor/scxml/ScXMLObject.h>
38#include <Inventor/tools/SbPimplPtr.h>
47class COIN_DLL_API ScXMLDocument :
public ScXMLObject {
48 typedef ScXMLObject inherited;
49 SCXML_OBJECT_HEADER(ScXMLDocument)
55 static ScXMLDocument * readFile(
const char * filename);
56 static ScXMLDocument * readBuffer(
const SbByteBuffer & buffer);
57 static ScXMLDocument * readXMLData(cc_xml_doc * xmldoc);
60 virtual ~ScXMLDocument(
void);
62 void setFilename(
const char * filename);
63 const char * getFilename(
void)
const;
74 ScXMLDocument(
const ScXMLDocument & rhs);
75 ScXMLDocument & operator = (
const ScXMLDocument & rhs);
Definition SbByteBuffer.h:34
The SbName class stores strings by reference.
Definition SbName.h:40
Definition SbPimplPtr.h:55
abstract base class for the SCXML 'state' elements.
Definition ScXMLAbstractStateElt.h:40
the <data> SCXML element.
Definition ScXMLDataElt.h:42
static void cleanClass(void)
Does the opposite of initClass, deallocates any class specific resources and resets the class to an u...
Definition ScXMLObject.cpp:115
static void initClass(void)
Sets up initialization for data common to all instances of this class, like submitting necessary info...
Definition ScXMLObject.cpp:102
implements the <scxml> SCXML element.
Definition ScXMLScxmlElt.h:47