Add a .gitignore file
[melted] / mlt++ / src / MltTractor.h
index 29a7e22..9fe5d79 100644 (file)
@@ -21,6 +21,8 @@
 #ifndef _MLTPP_TRACTOR_H_
 #define _MLTPP_TRACTOR_H_
 
+#include "config.h"
+
 #include <framework/mlt.h>
 
 #include "MltProducer.h"
@@ -32,8 +34,9 @@ namespace Mlt
        class Multitrack;
        class Transition;
        class Filter;
+       class Profile;
 
-       class Tractor : public Producer
+       class MLTPP_DECLSPEC Tractor : public Producer
        {
                private:
                        mlt_tractor instance;
@@ -42,8 +45,9 @@ namespace Mlt
                        Tractor( Service &tractor );
                        Tractor( mlt_tractor tractor );
                        Tractor( Tractor &tractor );
+                       Tractor( Profile& profile, char *id, char *arg = NULL );
                        virtual ~Tractor( );
-                       mlt_tractor get_tractor( );
+                       virtual mlt_tractor get_tractor( );
                        mlt_producer get_producer( );
                        Multitrack *multitrack( );
                        Field *field( );