]> git.sesse.net Git - mlt/blob - mlt++/src/MltFactory.h
Remove files that no longer belong.
[mlt] / mlt++ / src / 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 program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU Lesser General Public License as published
9  * by the Free Software Foundation; either version 2 of the License, or
10  * (at your option) any later version.
11  *
12  * This program 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
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program; if not, write to the Free Software Foundation,
19  * 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 #ifdef WIN32
53                         static char *getenv( const char * );
54                         static int setenv( const char *, const char * );
55 #endif
56                         static void close( );
57         };
58 }
59
60 #endif