mirror of
https://github.com/cookiengineer/audacity
synced 2025-07-07 07:57:43 +02:00
25 lines
611 B
C++
25 lines
611 B
C++
/**********************************************************************
|
|
|
|
Audacity: A Digital Audio Editor
|
|
|
|
ExportPCM.h
|
|
|
|
Dominic Mazzoni
|
|
|
|
**********************************************************************/
|
|
|
|
#ifndef __AUDACITY_EXPORTPCM__
|
|
#define __AUDACITY_EXPORTPCM__
|
|
|
|
#include "../MemoryX.h"
|
|
class ExportPlugin;
|
|
|
|
/** The only part of this class which is publically accessible is the
|
|
* factory method New_ExportPCM() which creates a NEW ExportPCM object and
|
|
* returns a pointer to it. The rest of the class declaration is in ExportPCM.cpp
|
|
*/
|
|
std::unique_ptr<ExportPlugin> New_ExportPCM();
|
|
|
|
#endif
|
|
|