TrackViewPick Class Reference
 
 
 
TrackViewPick Class Reference

#include <maxapi.h>

Inheritance diagram for TrackViewPick:
MaxHeapOperators

Class Description

See also:
Class ReferenceTarget,
Description:
This class stores the result of a selection from the Track View Pick dialog.
Data Members:
ReferenceTarget *anim;

The item the user picked.

ReferenceTarget *client;

The owner of the anim.

int subNum;

Sub-animatable number of the anim.

Public Member Functions

  TrackViewPick ()
bool  operator== (const TrackViewPick &b) const

Public Attributes

ReferenceTarget anim
ReferenceTarget client
int  subNum

Constructor & Destructor Documentation

TrackViewPick ( ) [inline]

Member Function Documentation

bool operator== ( const TrackViewPick b ) const [inline]
Remarks:
Compares this class instance to another one
                {
                        return anim == b.anim && client == b.client && subNum == b.subNum;
                }

Member Data Documentation