1#ifndef COIN_SCXMLTRANSITIONELT_H
2#define COIN_SCXMLTRANSITIONELT_H
36#include <Inventor/scxml/ScXMLElt.h>
37#include <Inventor/tools/SbPimplPtr.h>
47 static void initClass(
void);
48 static void cleanClass(
void);
54 virtual void setEventAttribute(
const char * event);
55 const char * getEventAttribute(
void)
const {
return this->event; }
57 virtual void setCondAttribute(
const char * cond);
58 const char * getCondAttribute(
void)
const {
return this->cond; }
60 virtual void setTargetAttribute(
const char * target);
61 const char * getTargetAttribute(
void)
const {
return this->target; }
63 virtual void setAnchorAttribute(
const char * anchor);
64 const char * getAnchorAttribute(
void)
const {
return this->anchor; }
66 virtual SbBool handleXMLAttributes(
void);
68 virtual void copyContents(
const ScXMLElt * rhs);
73 SbBool isConditionLess(
void)
const;
74 SbBool isTargetLess(
void)
const;
75 SbBool isSelfReferencing(
void)
const;
78 virtual SbBool isEventMatch(
const ScXMLEvent * event)
const;
83 virtual int getNumExecutables(
void)
const;
87 virtual void clearAllExecutables(
void);
97 SbBool needprefixmatching;
The SbList class is a template container class for lists.
Definition SbList.h:70
SbList< Type > & operator=(const SbList< Type > &l)
Definition SbList.h:99
The SbName class stores strings by reference.
Definition SbName.h:40
base class for all SCXML elements.
Definition ScXMLElt.h:44
Base class for events sent to SCXML state machines.
Definition ScXMLEvent.h:40
base class for all SCXML elements with executable content.
Definition ScXMLExecutableElt.h:42
Manager for processing events and setting states in SCXML structures.
Definition ScXMLStateMachine.h:61
the <transition> SCXML element.
Definition ScXMLTransitionElt.h:43