1
0
mirror of https://github.com/cookiengineer/audacity synced 2026-03-12 09:25:35 +01:00
Files
audacity/src/export/ExportCL.h

24 lines
626 B
C++

/**********************************************************************
Audacity: A Digital Audio Editor
ExportCL.h
Joshua Haberman
**********************************************************************/
#ifndef __AUDACITY_EXPORTCL__
#define __AUDACITY_EXPORTCL__
// 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
*/
ExportPlugin *New_ExportCL();
#endif