mirror of
https://github.com/cookiengineer/audacity
synced 2025-07-11 14:17:43 +02:00
25 lines
616 B
C++
25 lines
616 B
C++
/**********************************************************************
|
|
|
|
Audacity: A Digital Audio Editor
|
|
|
|
ExportFLAC.h
|
|
|
|
Frederik M.J.V
|
|
|
|
**********************************************************************/
|
|
|
|
#ifndef __AUDACITY_EXPORTFLAC__
|
|
#define __AUDACITY_EXPORTFLAC__
|
|
|
|
#include "../MemoryX.h"
|
|
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
|
|
*/
|
|
std::unique_ptr<ExportPlugin> New_ExportFLAC();
|
|
|
|
#endif
|
|
|