b5ef957482727d15695468fb2676f79d0b3f8958
[melted] / mlt++ / src / MltRepository.h
1 /**
2 * MltRepository.h - MLT Wrapper
3 * Copyright (C) 2008 Dan Dennedy <dan@dennedy.org>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU Lesser General Public License as published
7 * by the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software Foundation,
17 * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18 */
19
20 #ifndef _MLTPP_REPOSITORY_H_
21 #define _MLTPP_REPOSITORY_H_
22
23 #include "config.h"
24
25 #ifdef SWIG
26 #define MLTPP_DECLSPEC
27 #endif
28
29 #include <framework/mlt.h>
30
31 namespace Mlt
32 {
33 class Profile;
34
35 class MLTPP_DECLSPEC Repository
36 {
37 private:
38 mlt_repository instance;
39 Repository( ) { }
40 public:
41 Repository( const char* directory );
42 Repository( mlt_repository repository );
43 ~Repository();
44
45 void register_service( mlt_service_type service_type, const char *service, void *symbol );
46 void *create( Profile& profile, mlt_service_type type, const char *service, void *arg );
47 };
48 }
49
50 #endif