1#ifndef COIN_SCXMLVALIDATEELT_H
2#define COIN_SCXMLVALIDATEELT_H
36#include <Inventor/scxml/ScXMLExecutableElt.h>
38#include <Inventor/tools/SbLazyPimplPtr.h>
40class COIN_DLL_API ScXMLValidateElt :
public ScXMLExecutableElt {
41 typedef ScXMLExecutableElt inherited;
42 SCXML_ELEMENT_HEADER(ScXMLValidateElt)
45 static void initClass(
void);
46 static void cleanClass(
void);
48 ScXMLValidateElt(
void);
49 virtual ~ScXMLValidateElt(
void);
51 virtual void setLocationAttribute(
const char * location);
52 virtual const char * getLocationAttribute(
void)
const {
return this->location; }
54 virtual void setSchemaAttribute(
const char * schema);
55 virtual const char * getSchemaAttribute(
void)
const {
return this->schema; }
59 virtual void copyContents(
const ScXMLElt * rhs);
61 virtual const ScXMLElt *
search(
const char * attrname,
const char * attrvalue)
const;
70 ScXMLValidateElt(
const ScXMLValidateElt & rhs);
71 ScXMLValidateElt & operator = (
const ScXMLValidateElt & rhs);
Definition SbLazyPimplPtr.h:56
virtual const ScXMLElt * search(const char *attrname, const char *attrvalue) const
Definition ScXMLElt.cpp:214
virtual SbBool handleXMLAttributes(void)
Definition ScXMLElt.cpp:200
Manager for processing events and setting states in SCXML structures.
Definition ScXMLStateMachine.h:61