Ardour  9.0-pre0-582-g084a23a80d
export_pointers.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2011 Sakari Bergen <sakari.bergen@beatwaves.net>
3  * Copyright (C) 2013 Paul Davis <paul@linuxaudiosystems.com>
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * 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 along
16  * with this program; if not, write to the Free Software Foundation, Inc.,
17  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18  */
19 
20 #pragma once
21 
22 #include <memory>
23 
24 #include <boost/operators.hpp>
25 
28 
29 namespace AudioGrapher {
30  class BroadcastInfo;
31 }
32 
33 namespace ARDOUR {
34 
35 class ExportTimespan;
36 class ExportChannel;
37 class ExportChannelConfiguration;
38 class ExportFormat;
39 class ExportFormatBase;
40 class ExportFormatSpecification;
41 class ExportFormatCompatibility;
42 class ExportFilename;
43 class ExportStatus;
44 class ExportPreset;
45 
48 
49 typedef std::shared_ptr<ExportChannelConfiguration> ExportChannelConfigPtr;
50 typedef std::shared_ptr<ExportFormatBase> ExportFormatBasePtr;
51 typedef std::shared_ptr<ExportFormat> ExportFormatPtr;
52 typedef std::shared_ptr<ExportFormatSpecification> ExportFormatSpecPtr;
53 typedef std::shared_ptr<ExportFormatCompatibility> ExportFormatCompatibilityPtr;
54 typedef std::shared_ptr<ExportFilename> ExportFilenamePtr;
55 typedef std::shared_ptr<ExportStatus> ExportStatusPtr;
56 typedef std::shared_ptr<ExportPreset> ExportPresetPtr;
57 
58 typedef std::weak_ptr<ExportFormatCompatibility> WeakExportFormatCompatibilityPtr;
59 typedef std::weak_ptr<ExportFormat> WeakExportFormatPtr;
60 
61 typedef std::shared_ptr<AudioGrapher::BroadcastInfo> BroadcastInfoPtr;
62 
63 } // namespace ARDOUR
64 
std::shared_ptr< ExportPreset > ExportPresetPtr
std::shared_ptr< ExportFilename > ExportFilenamePtr
std::shared_ptr< ExportChannelConfiguration > ExportChannelConfigPtr
std::shared_ptr< AudioGrapher::BroadcastInfo > BroadcastInfoPtr
std::weak_ptr< ExportFormatCompatibility > WeakExportFormatCompatibilityPtr
ComparableSharedPtr< ExportChannel > ExportChannelPtr
std::shared_ptr< ExportFormat > ExportFormatPtr
std::shared_ptr< ExportFormatCompatibility > ExportFormatCompatibilityPtr
std::shared_ptr< ExportStatus > ExportStatusPtr
std::weak_ptr< ExportFormat > WeakExportFormatPtr
std::shared_ptr< ExportFormatBase > ExportFormatBasePtr
std::shared_ptr< ExportFormatSpecification > ExportFormatSpecPtr
ComparableSharedPtr< ExportTimespan > ExportTimespanPtr