Main Page   Namespace List   Class Hierarchy   Compound List   File List   Namespace Members   Compound Members   Related Pages  

scenebuilder.hh

00001 /*
00002  * PIAVE - PIAVE Is A Video Editor
00003  *
00004  * Copyright (C) 2002 Rolf Dubitzky, rolf@dubitzky.de
00005  */
00006 
00007 /*
00008  * This program is free software; you can redistribute it and/or modify
00009  * it under the terms of the GNU General Public License as published by
00010  * the Free Software Foundation; either version 2 of the License, or
00011  * (at your option) any later version.
00012  *
00013  * This program is distributed in the hope that it will be useful,
00014  * but WITHOUT ANY WARRANTY; without even the implied warranty of
00015  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00016  * GNU General Public License for more details.
00017  *
00018  * You should have received a copy of the GNU General Public License
00019  * along with this program; if not, write to the Free Software Foundation,
00020  * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
00021  */
00022 
00023 #if ! defined ( SCENEBUILDER_HH )
00024 #define SCENEBUILDER_HH
00025 
00026 // std c
00027 
00028 // std c++
00029 
00030 // PIAVE
00031 
00032 namespace PIAVE {
00033 
00034     class StorySeqNode;
00035     class PropertyNode;
00036     class MediaElement;
00037 
00038     class SceneBuilder
00039     {
00040         SceneBuilder(){};
00041       public:
00042         static StorySeqNode * buildScenelist( const PropertyNode * scenelist );
00043 
00044         static MediaElement * buildMediaNode( const PropertyNode * mediaNode );
00045         static MediaElement * buildInputNode( const PropertyNode * inputNode );
00046         static MediaElement * buildPluginNode( const PropertyNode * pluginNode );
00047         static MediaElement * buildEffectNode( const PropertyNode * effectNode );
00048         static MediaElement * buildParNode( const PropertyNode * parNode );
00049 
00050     };
00051 
00052 }
00053 
00054 #endif

Generated on Tue Oct 14 20:45:37 2003 for piave by doxygen1.2.18