1#ifndef COIN_SCXMLLOGELT_H
2#define COIN_SCXMLLOGELT_H
36#include <Inventor/scxml/ScXMLExecutableElt.h>
38#include <Inventor/tools/SbLazyPimplPtr.h>
40class COIN_DLL_API ScXMLLogElt :
public ScXMLExecutableElt {
41 typedef ScXMLExecutableElt inherited;
42 SCXML_ELEMENT_HEADER(ScXMLLogElt)
49 virtual ~ScXMLLogElt(
void);
51 virtual void setLabelAttribute(
const char * label);
52 virtual const char * getLabelAttribute(
void)
const {
return this->label; }
54 virtual void setExprAttribute(
const char * expr);
55 virtual const char * getExprAttribute(
void)
const {
return this->expr; }
57 virtual void setLevelAttribute(
const char * level);
58 virtual const char * getLevelAttribute(
void)
const {
return this->level; }
62 virtual void copyContents(
const ScXMLElt * rhs);
64 virtual const ScXMLElt *
search(
const char * attrname,
const char * attrvalue)
const;
74 ScXMLLogElt(
const ScXMLLogElt & rhs);
75 ScXMLLogElt & operator = (
const ScXMLLogElt & 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
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
Manager for processing events and setting states in SCXML structures.
Definition ScXMLStateMachine.h:61