Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

scxmlobject(3) [debian man page]

ScXMLObject(3)							       Coin							    ScXMLObject(3)

NAME
ScXMLObject - Base class for all SCXML objects. SYNOPSIS
#include <Inventor/scxml/ScXMLObject.h> Inherited by ScXMLEvent, ScXMLInvoke, and ScXMLStateMachine. Public Member Functions virtual SoType getTypeId (void) const =0 SbBool isOfType (SoType type) const void setXMLAttribute (const char *attribute, const char *value) const char * getXMLAttribute (const char *attribute) const virtual SbBool handleXMLAttributes (void) virtual void setContainer (ScXMLObject *container) ScXMLObject * getContainer (void) const SbBool isContainedIn (const ScXMLObject *object) const Static Public Member Functions static SoType getClassTypeId (void) static void initClass (void) Static Protected Member Functions static void registerClassType (const char *xmlns, const char *classname, SoType type) static void registerInvokeClassType (const char *xmlns, const char *targettype, const char *source, SoType type) Detailed Description Base class for all SCXML objects. Since: Coin 3.0 Member Function Documentation void ScXMLObject::setXMLAttribute (const char *attribute, const char *value) This method associates a value with an attribute name. This is used for parameter passing while reading by the SCXML reader, but can be used as a general-purpose attribute dictionary outside of that. If NULL is passed as the value, the attribute is removed. const char * ScXMLObject::getXMLAttribute (const char *attribute) const This method returns the string value set for an attribute, or NULL if not set. SbBool ScXMLObject::handleXMLAttributes (void) [virtual] This method is called when the file reader has set all the XML attributes on the object, and wants the object to handle them and report if the values were ok or if a read error should be produced. Returns: TRUE if the attributes are ok, and FALSE on error. This base class implementation does nothing and just returns TRUE. Reimplemented in ScXMLInvoke. void ScXMLObject::setContainer (ScXMLObject *container) [virtual] Set the pointer to the parent ScXML object. SbBool ScXMLObject::isContainedIn (const ScXMLObject *object) const This method returns TRUE if the object is contained within the given object argument. Also if they are the same, TRUE will be returned. Otherwise, FALSE is retured. void ScXMLObject::registerClassType (const char *xmlns, const char *classname, SoTypetype) [static], [protected] Internal method. Friendly forwarding for ScXMLObject subclasses. void ScXMLObject::registerInvokeClassType (const char *xmlns, const char *targettype, const char *source, SoTypetype) [static], [protected] Internal method. Friendly forwarding for ScXMLObject subclasses. Author Generated automatically by Doxygen for Coin from the source code. Version 3.1.3 Wed May 23 2012 ScXMLObject(3)

Check Out this Related Man Page

SoSFShort(3)							       Coin							      SoSFShort(3)

NAME
SoSFShort - The SoSFShort class is a container for a short integer value. This field is used where nodes, engines or other field containers needs to store a single short integer value. SYNOPSIS
#include <Inventor/fields/SoSFShort.h> Inherits SoSField. Public Member Functions virtual SoType getTypeId (void) const virtual void copyFrom (const SoField &field) const SoSFShort & operator= (const SoSFShort &field) virtual SbBool isSame (const SoField &field) const short getValue (void) const void setValue (short newvalue) short operator= (short newvalue) int operator== (const SoSFShort &field) const int operator!= (const SoSFShort &field) const Static Public Member Functions static void * createInstance (void) static SoType getClassTypeId (void) static void initClass (void) Protected Attributes short value Additional Inherited Members Detailed Description The SoSFShort class is a container for a short integer value. This field is used where nodes, engines or other field containers needs to store a single short integer value. See also: SoMFShort Member Function Documentation SoType SoSFShort::getClassTypeId (void) [static] Returns a unique type identifier for this field class. See also: getTypeId(), SoType Reimplemented from SoSField. SoType SoSFShort::getTypeId (void) const [virtual] Returns the type identification instance which uniquely identifies the Coin field class the object belongs to. See also: getClassTypeId(), SoType Implements SoField. void SoSFShort::copyFrom (const SoField &f) [virtual] Copy value(s) from f into this field. f must be of the same type as this field. Implements SoField. SbBool SoSFShort::isSame (const SoField &f) const [virtual] Check for equal type and value(s). Implements SoField. void SoSFShort::initClass (void) [static] Internal method called upon initialization of the library (from SoDB::init()) to set up the type system. Reimplemented from SoSField. Author Generated automatically by Doxygen for Coin from the source code. Version 3.1.3 Wed May 23 2012 SoSFShort(3)
Man Page