X-Git-Url: http://research.m1stereo.tv/gitweb?a=blobdiff_plain;f=mlt%2B%2B%2Fsrc%2FMltTransition.h;h=e0559aff56bcb93918dfe31f96b348ee640af3df;hb=55757b000043f6e370b9e963ce2e3542962c03c0;hp=da430fcadee465339f72377f02909093ca45f633;hpb=01116637238e74419971afc26311c7a65b7b43aa;p=melted diff --git a/mlt++/src/MltTransition.h b/mlt++/src/MltTransition.h index da430fc..e0559af 100644 --- a/mlt++/src/MltTransition.h +++ b/mlt++/src/MltTransition.h @@ -21,25 +21,29 @@ #ifndef _MLTPP_TRANSITION_H_ #define _MLTPP_TRANSITION_H_ +#include "config.h" + #include #include "MltService.h" namespace Mlt { class Service; + class Profile; - class Transition : public Service + class MLTPP_DECLSPEC Transition : public Service { private: - bool destroy; mlt_transition instance; public: - Transition( char *id, char *arg = NULL ); + Transition( Profile& profile, char *id, char *arg = NULL ); + Transition( Service &transition ); Transition( Transition &transition ); Transition( mlt_transition transition ); virtual ~Transition( ); virtual mlt_transition get_transition( ); mlt_service get_service( ); + void set_in_and_out( int in, int out ); }; }