mirror of
https://github.com/cookiengineer/audacity
synced 2025-12-04 07:40:12 +01:00
24 lines
571 B
C++
24 lines
571 B
C++
/**********************************************************************
|
|
|
|
Audacity: A Digital Audio Editor
|
|
|
|
ExportOGG.h
|
|
|
|
Joshua Haberman
|
|
|
|
**********************************************************************/
|
|
|
|
#ifndef __AUDACITY_EXPORTOGG__
|
|
#define __AUDACITY_EXPORTOGG__
|
|
|
|
class ExportPlugin;
|
|
|
|
/** The only part of this class which is publically accessible is the
|
|
* factory method New_ExportOGG() which creates a new ExportOGG object and
|
|
* returns a pointer to it. The rest of the class declaration is in ExportOGG.cpp
|
|
*/
|
|
ExportPlugin *New_ExportOGG();
|
|
|
|
#endif
|
|
|