mirror of
https://github.com/cookiengineer/audacity
synced 2025-08-05 14:49:25 +02:00
34 lines
779 B
C++
34 lines
779 B
C++
/**********************************************************************
|
|
|
|
Audacity: A Digital Audio Editor
|
|
|
|
ImportOGG.h
|
|
|
|
Joshua Haberman
|
|
|
|
**********************************************************************/
|
|
|
|
#ifndef __AUDACITY_IMPORT_OGG__
|
|
#define __AUDACITY_IMPORT_OGG__
|
|
|
|
class ImportPluginList;
|
|
class UnusableImportPluginList;
|
|
|
|
void GetOGGImportPlugin(ImportPluginList *importPluginList,
|
|
UnusableImportPluginList *unusableImportPluginList);
|
|
|
|
#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: abd2ee18-f6da-40e4-be29-d2a9efa8fa56
|
|
|