I\'m creating a protocol, and one of the parameters to a method I\'m defining is a CMTime*. I would like to forward declare CMTime as opposed to in
CMTime*
CMTime
Just adding typedef before the struct does the trick for me.
typedef
typedef struct CMTime;