Ardour  8.12
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 #ifndef __ardour_export_pointers_h__
21 #define __ardour_export_pointers_h__
22 
23 #include <memory>
24 
25 #include <boost/operators.hpp>
26 
29 
30 namespace AudioGrapher {
31  class BroadcastInfo;
32 }
33 
34 namespace ARDOUR {
35 
36 class ExportTimespan;
37 class ExportChannel;
38 class ExportChannelConfiguration;
39 class ExportFormat;
40 class ExportFormatBase;
41 class ExportFormatSpecification;
42 class ExportFormatCompatibility;
43 class ExportFilename;
44 class ExportStatus;
45 class ExportPreset;
46 
49 
50 typedef std::shared_ptr<ExportChannelConfiguration> ExportChannelConfigPtr;
51 typedef std::shared_ptr<ExportFormatBase> ExportFormatBasePtr;
52 typedef std::shared_ptr<ExportFormat> ExportFormatPtr;
53 typedef std::shared_ptr<ExportFormatSpecification> ExportFormatSpecPtr;
54 typedef std::shared_ptr<ExportFormatCompatibility> ExportFormatCompatibilityPtr;
55 typedef std::shared_ptr<ExportFilename> ExportFilenamePtr;
56 typedef std::shared_ptr<ExportStatus> ExportStatusPtr;
57 typedef std::shared_ptr<ExportPreset> ExportPresetPtr;
58 
59 typedef std::weak_ptr<ExportFormatCompatibility> WeakExportFormatCompatibilityPtr;
60 typedef std::weak_ptr<ExportFormat> WeakExportFormatPtr;
61 
62 typedef std::shared_ptr<AudioGrapher::BroadcastInfo> BroadcastInfoPtr;
63 
64 } // namespace ARDOUR
65 
66 #endif // __ardour_export_pointers_h__
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