Constness changes
[melted] / mlt++ / src / MltFilter.h
index cdf574a..bba1ee2 100644 (file)
@@ -21,6 +21,8 @@
 #ifndef _MLTPP_FILTER_H_
 #define _MLTPP_FILTER_H_
 
+#include "config.h"
+
 #include <framework/mlt.h>
 
 #include "MltService.h"
 namespace Mlt
 {
        class Service;
+       class Profile;
 
-       class Filter : public Service
+       class MLTPP_DECLSPEC Filter : public Service
        {
                private:
-                       bool destroy;
                        mlt_filter instance;
                public:
-                       Filter( char *id, char *service = NULL );
+                       Filter( Profile& profile, const char *id, const char *service = NULL );
+                       Filter( Service &filter );
                        Filter( Filter &filter );
                        Filter( mlt_filter filter );
                        virtual ~Filter( );
                        virtual mlt_filter get_filter( );
                        mlt_service get_service( );
                        int connect( Service &service, int index = 0 );
-                       void set_in_and_out( mlt_position in, mlt_position out );
-                       mlt_position get_in( );
-                       mlt_position get_out( );
+                       void set_in_and_out( int in, int out );
+                       int get_in( );
+                       int get_out( );
                        int get_track( );
        };
 }