mirror of
https://github.com/cookiengineer/audacity
synced 2025-07-03 22:19:07 +02:00
24 lines
626 B
C++
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
|