/* Copyright (C) 2011 Paul Davis Author: Sakari Bergen This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #ifndef __ardour_export_pointers_h__ #define __ardour_export_pointers_h__ #include #include #include #include "ardour/libardour_visibility.h" #include "ardour/comparable_shared_ptr.h" namespace AudioGrapher { class BroadcastInfo; } namespace ARDOUR { class ExportTimespan; class ExportChannel; class ExportChannelConfiguration; class ExportFormat; class ExportFormatBase; class ExportFormatSpecification; class ExportFormatCompatibility; class ExportFilename; class ExportStatus; class ExportPreset; typedef ComparableSharedPtr ExportChannelPtr; typedef ComparableSharedPtr ExportTimespanPtr; typedef boost::shared_ptr ExportChannelConfigPtr; typedef boost::shared_ptr ExportFormatBasePtr; typedef boost::shared_ptr ExportFormatPtr; typedef boost::shared_ptr ExportFormatSpecPtr; typedef boost::shared_ptr ExportFormatCompatibilityPtr; typedef boost::shared_ptr ExportFilenamePtr; typedef boost::shared_ptr ExportStatusPtr; typedef boost::shared_ptr ExportPresetPtr; typedef boost::weak_ptr WeakExportFormatCompatibilityPtr; typedef boost::weak_ptr WeakExportFormatPtr; typedef boost::shared_ptr BroadcastInfoPtr; } // namespace ARDOUR #endif // __ardour_export_pointers_h__