Merge ../mlt
[melted] / mlt++ / src / MltFilteredProducer.h
index f4eafe4..943f620 100644 (file)
@@ -21,6 +21,8 @@
 #ifndef _MLTPP_FILTERED_PRODUCER_H_
 #define _MLTPP_FILTERED_PRODUCER_H_
 
+#include "config.h"
+
 #include "MltProducer.h"
 #include "MltFilter.h"
 #include "MltService.h"
@@ -30,15 +32,15 @@ namespace Mlt
        class Producer;
        class Service;
        class Filter;
+       class Profile;
 
-       class FilteredProducer : public Producer
+       class MLTPP_DECLSPEC FilteredProducer : public Producer
        {
                private:
                        Service *last;
                public:
-                       FilteredProducer( char *id, char *arg = NULL );
+                       FilteredProducer( Profile* profile, char *id, char *arg = NULL );
                        virtual ~FilteredProducer( );
-                       mlt_service get_connection( );
                        int attach( Filter &filter );
                        int detach( Filter &filter );
        };