You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
421 B
15 lines
421 B
#if !defined(MOTION__Transition_inl__INCLUDED)
|
|
#define MOTION__Transition_inl__INCLUDED
|
|
|
|
|
|
//------------------------------------------------------------------------------
|
|
inline Transition * CastTransition(BaseObject * pbase)
|
|
{
|
|
if ((pbase != NULL) && (pbase->GetHandleType() == htTransition)) {
|
|
return (Transition *) pbase;
|
|
}
|
|
return NULL;
|
|
}
|
|
|
|
|
|
#endif // MOTION__Transition_inl__INCLUDED
|