mirror of
https://github.com/cookiengineer/audacity
synced 2025-05-11 14:41:06 +02:00
24 lines
576 B
C++
24 lines
576 B
C++
/**********************************************************************
|
|
|
|
Audacity: A Digital Audio Editor
|
|
|
|
ExportFLAC.h
|
|
|
|
Frederik M.J.V
|
|
|
|
**********************************************************************/
|
|
|
|
#ifndef __AUDACITY_EXPORTFLAC__
|
|
#define __AUDACITY_EXPORTFLAC__
|
|
|
|
class ExportPlugin;
|
|
|
|
/* The only part of this class which is publically accessible is the
|
|
* factory method New_ExportFLAC() which creates a NEW ExportFLAC object and
|
|
* returns a pointer to it. The rest of the class declaration is in ExportFLAC.cpp
|
|
*/
|
|
ExportPlugin *New_ExportFLAC();
|
|
|
|
#endif
|
|
|