1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-06-20 22:30:05 +02:00
audacity/src/export/ExportMP2.h
2018-05-10 00:56:37 -04:00

26 lines
626 B
C++

/**********************************************************************
Audacity: A Digital Audio Editor
ExportMP2.h
Dominic Mazzoni
Markus Meyer
**********************************************************************/
#ifndef __AUDACITY_EXPORTMP2__
#define __AUDACITY_EXPORTMP2__
#include "../MemoryX.h"
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
*/
std::unique_ptr<ExportPlugin> New_ExportMP2();
#endif