mirror of
https://github.com/cookiengineer/audacity
synced 2025-06-25 00:30:07 +02:00
31 lines
856 B
C++
31 lines
856 B
C++
/**********************************************************************
|
|
|
|
Audacity: A Digital Audio Editor
|
|
|
|
ExportMP3.h
|
|
|
|
Dominic Mazzoni
|
|
|
|
**********************************************************************/
|
|
|
|
#ifndef __AUDACITY_EXPORTMP3__
|
|
#define __AUDACITY_EXPORTMP3__
|
|
|
|
/* --------------------------------------------------------------------------*/
|
|
|
|
class ExportPlugin;
|
|
class wxString;
|
|
class wxWindow;
|
|
/** Factory method New_ExportMP3() which creates a NEW ExportMP3 object and
|
|
* returns a pointer to it. The rest of the class declaration is in ExportMP3.cpp
|
|
*/
|
|
ExportPlugin *New_ExportMP3();
|
|
|
|
//----------------------------------------------------------------------------
|
|
// Get MP3 library versioqn
|
|
//----------------------------------------------------------------------------
|
|
wxString GetMP3Version(wxWindow *parent, bool prompt);
|
|
|
|
#endif
|
|
|