mirror of
https://github.com/cookiengineer/audacity
synced 2025-12-27 07:01:12 +01:00
34 lines
807 B
C++
34 lines
807 B
C++
/**********************************************************************
|
|
|
|
Audacity: A Digital Audio Editor
|
|
|
|
ExportPCM.h
|
|
|
|
Dominic Mazzoni
|
|
|
|
**********************************************************************/
|
|
|
|
#ifndef __AUDACITY_EXPORTPCM__
|
|
#define __AUDACITY_EXPORTPCM__
|
|
|
|
class ExportPlugin;
|
|
|
|
//----------------------------------------------------------------------------
|
|
// Constructor
|
|
//----------------------------------------------------------------------------
|
|
ExportPlugin *New_ExportPCM();
|
|
|
|
#endif
|
|
|
|
// Indentation settings for Vim and Emacs and unique identifier for Arch, a
|
|
// version control system. Please do not modify past this point.
|
|
//
|
|
// Local Variables:
|
|
// c-basic-offset: 3
|
|
// indent-tabs-mode: nil
|
|
// End:
|
|
//
|
|
// vim: et sts=3 sw=3
|
|
// arch-tag: daa509db-cfa8-4327-9fd4-b572b3dd814a
|
|
|