05d9c76f7abbb54ac359bdd4337d26651c9ea2a8
[ardour.git] / libs / ardour / playlist_factory.cc
1 /*
2     Copyright (C) 2000-2006 Paul Davis 
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18     $Id$
19 */
20
21 #include <pbd/error.h>
22
23 #include <ardour/playlist.h>
24 #include <ardour/audioplaylist.h>
25
26 #include "i18n.h"
27
28 using namespace ARDOUR;
29 using namespace PBD;
30
31 Playlist*
32 Playlist::copyPlaylist (const Playlist& playlist, jack_nframes_t start, jack_nframes_t length,
33                         string name, bool result_is_hidden)
34 {
35         const AudioPlaylist* apl;
36
37         if ((apl = dynamic_cast<const AudioPlaylist*> (&playlist)) != 0) {
38                 return new AudioPlaylist (*apl, start, length, name, result_is_hidden);
39         } else {
40                 fatal << _("programming error: Playlist::copyPlaylist called with unknown Playlist type")
41                       << endmsg;
42                 /*NOTREACHED*/
43                 return 0;
44         }
45 }