1#ifndef COIN_SCXMLPARAMELT_H
2#define COIN_SCXMLPARAMELT_H
36#include <Inventor/scxml/ScXMLElt.h>
38#include <Inventor/tools/SbLazyPimplPtr.h>
40class COIN_DLL_API ScXMLParamElt :
public ScXMLElt {
41 typedef ScXMLElt inherited;
42 SCXML_ELEMENT_HEADER(ScXMLParamElt)
49 virtual ~ScXMLParamElt(
void);
51 virtual void setNameAttribute(
const char * name);
52 virtual const char * getNameAttribute(
void)
const {
return this->name; }
54 virtual void setExprAttribute(
const char * expr);
55 virtual const char * getExprAttribute(
void)
const {
return this->expr; }
59 virtual void copyContents(
const ScXMLElt * rhs);
61 virtual const ScXMLElt *
search(
const char * attrname,
const char * attrvalue)
const;
68 ScXMLParamElt(
const ScXMLParamElt & rhs);
69 ScXMLParamElt & operator = (
const ScXMLParamElt & 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