mirror of
https://github.com/cookiengineer/audacity
synced 2025-12-27 07:01:12 +01:00
35 lines
822 B
C++
35 lines
822 B
C++
/**********************************************************************
|
|
|
|
Audacity: A Digital Audio Editor
|
|
|
|
ExportMP2.h
|
|
|
|
Dominic Mazzoni
|
|
Markus Meyer
|
|
|
|
**********************************************************************/
|
|
|
|
#ifndef __AUDACITY_EXPORTMP2__
|
|
#define __AUDACITY_EXPORTMP2__
|
|
|
|
class ExportPlugin;
|
|
|
|
//----------------------------------------------------------------------------
|
|
// Constructor
|
|
//----------------------------------------------------------------------------
|
|
ExportPlugin *New_ExportMP2();
|
|
|
|
#endif
|
|
|
|
// Indentation settings for Vim and Emacs and unique identifier for Arch, a
|
|
// version control system. Please do not modify past this point.
|
|
//
|
|
// Local Variables:
|
|
// c-basic-offset: 3
|
|
// indent-tabs-mode: nil
|
|
// End:
|
|
//
|
|
// vim: et sts=3 sw=3
|
|
// arch-tag: 697b9941-3e7e-44c1-929e-19d34ed70151
|
|
|