+ Win32 port - dev studio is required to avoid issues with C++ ABI compatibility
[melted] / mlt++ / src / MltFilteredProducer.h
index f4eafe4..ce76c86 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"
@@ -31,14 +33,13 @@ namespace Mlt
        class Service;
        class Filter;
 
-       class FilteredProducer : public Producer
+       class MLTPP_DECLSPEC FilteredProducer : public Producer
        {
                private:
                        Service *last;
                public:
                        FilteredProducer( char *id, char *arg = NULL );
                        virtual ~FilteredProducer( );
-                       mlt_service get_connection( );
                        int attach( Filter &filter );
                        int detach( Filter &filter );
        };