#include <xsi_graphicsequencercontext.h>
Inheritance diagram for GraphicSequencerContext:

Public Member Functions |
|
| GraphicSequencerContext () | |
| ~GraphicSequencerContext () | |
| GraphicSequencerContext (const CRef &in_ref) | |
| GraphicSequencerContext (const GraphicSequencerContext &in_obj) | |
| bool | IsA (siClassID in_ClassID) const |
| siClassID | GetClassID () const |
| GraphicSequencerContext & | operator= (const GraphicSequencerContext &in_obj) |
| GraphicSequencerContext & | operator= (const CRef &in_ref) |
| CValue | GetUserData () |
| CStatus | PutUserData (const CValue &in_val) |
| CGraphicSequencer | GetGraphicSequencer () |
Default destructor.
| GraphicSequencerContext | ( | const CRef & | in_ref | ) |
Constructor.
| in_ref | constant reference object. |
| GraphicSequencerContext | ( | const GraphicSequencerContext & | in_obj | ) |
Copy constructor.
| in_obj | constant class object. |
| bool IsA | ( | siClassID | in_ClassID | ) | const [virtual] |
Returns true if a given class type is compatible with this API class.
| in_ClassID | class type. |
Reimplemented from CBase.
Returns the type of the API class.
Implements CBase.
Creates an object from another object.
| in_obj | constant class object. |
| GraphicSequencerContext& operator= | ( | const CRef & | in_ref | ) |
Creates an object from a reference object. The newly created object is set to empty if the input reference object is not compatible.
| in_ref | constant class object. |
Returns the user data stored in the context.
Allows you to store a CValue inside the context object. This is called User Data because XSI does not care about the content or meaning of the data. This information is not persisted. A common use for this feature is to store a pointer to a newly allocated C++ object during an Init callback,and then to use Context::GetUserData to retrieve the pointer when other callbacks are made.
Init callback, the pointer should be destroyed in the Term callback. | in_val | User data to be set for the operator instance. |
CStatus::Fail failure.
Returns the graphic sequencer object (CGraphicSequencer).