]> git.sesse.net Git - mlt/blob - src/mlt++/MltFactory.h
Fix doc error for mlt_playlist_is_blank().
[mlt] / src / mlt++ / MltFactory.h
1 /**
2  * MltFactory.h - MLT Wrapper
3  * Copyright (C) 2004-2005 Charles Yates
4  * Copyright (C) 2008 Dan Dennedy <dan@dennedy.org>
5  * Author: Charles Yates <charles.yates@pandora.be>
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * This library is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with this library; if not, write to the Free Software
19  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
20  */
21
22 #ifndef _MLTPP_FACTORY_H_
23 #define _MLTPP_FACTORY_H_
24
25 #include "config.h"
26
27 #ifdef SWIG
28 #define MLTPP_DECLSPEC
29 #endif
30
31 #include <framework/mlt.h>
32
33 namespace Mlt
34 {
35         class Properties;
36         class Producer;
37         class Filter;
38         class Transition;
39         class Consumer;
40         class Profile;
41         class Repository;
42
43         class MLTPP_DECLSPEC Factory
44         {
45                 public:
46                         static Repository *init( const char *directory = NULL );
47                         static Properties *event_object( );
48                         static Producer *producer( Profile& profile, char *id, char *arg = NULL );
49                         static Filter *filter( Profile& profile, char *id, char *arg = NULL );
50                         static Transition *transition( Profile& profile, char *id, char *arg = NULL );
51                         static Consumer *consumer( Profile& profile, char *id, char *arg = NULL );
52                         static void close( );
53         };
54 }
55
56 #endif