1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-07-18 17:47:41 +02:00
audacity/src/export/ExportCL.h
2016-04-06 14:08:42 -04:00

25 lines
662 B
C++

/**********************************************************************
Audacity: A Digital Audio Editor
ExportCL.h
Joshua Haberman
**********************************************************************/
#ifndef __AUDACITY_EXPORTCL__
#define __AUDACITY_EXPORTCL__
#include "../MemoryX.h"
// forward declaration of the ExportPlugin class from Export.h
class ExportPlugin;
/** The only part of this class which is publically accessible is the
* factory method New_ExportCL() which creates a NEW ExportCL object and
* returns a pointer to it. The rest of the class declaration is in ExportCL.cpp
*/
movable_ptr<ExportPlugin> New_ExportCL();
#endif