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