/** * MltFactory.h - MLT Wrapper * Copyright (C) 2004-2005 Charles Yates * Author: Charles Yates * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software Foundation, * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #ifndef _MLTPP_FACTORY_H_ #define _MLTPP_FACTORY_H_ #include "config.h" #ifdef SWIG #define MLTPP_DECLSPEC #endif #include namespace Mlt { class Properties; class Producer; class Filter; class Transition; class Consumer; class MLTPP_DECLSPEC Factory { public: static int init( char *arg = NULL ); static Properties *event_object( ); static Producer *producer( char *id, char *arg = NULL ); static Filter *filter( char *id, char *arg = NULL ); static Transition *transition( char *id, char *arg = NULL ); static Consumer *consumer( char *id, char *arg = NULL ); #ifdef WIN32 static char *getenv( const char * ); static int setenv( const char *, const char * ); #endif static void close( ); }; } #endif