mirror of
https://github.com/cookiengineer/audacity
synced 2025-06-20 14:20:06 +02:00
25 lines
586 B
C++
25 lines
586 B
C++
/**********************************************************************
|
|
|
|
Audacity: A Digital Audio Editor
|
|
|
|
ExportMP2.h
|
|
|
|
Dominic Mazzoni
|
|
Markus Meyer
|
|
|
|
**********************************************************************/
|
|
|
|
#ifndef __AUDACITY_EXPORTMP2__
|
|
#define __AUDACITY_EXPORTMP2__
|
|
|
|
class ExportPlugin;
|
|
|
|
/** The only part of this class which is publically accessible is the
|
|
* factory method New_ExportMP2() which creates a new ExportMP2 object and
|
|
* returns a pointer to it. The rest of the class declaration is in ExportMP2.cpp
|
|
*/
|
|
ExportPlugin *New_ExportMP2();
|
|
|
|
#endif
|
|
|