mirror of
https://github.com/cookiengineer/audacity
synced 2025-08-11 09:31:13 +02:00
33 lines
667 B
C++
33 lines
667 B
C++
/**********************************************************************
|
|
|
|
Audacity: A Digital Audio Editor
|
|
|
|
ImportQT.h
|
|
|
|
Joshua Haberman
|
|
|
|
**********************************************************************/
|
|
|
|
#ifndef __AUDACITY_IMPORT_QT__
|
|
#define __AUDACITY_IMPORT_QT__
|
|
|
|
class ImportPluginList;
|
|
class UnusableImportPluginList;
|
|
|
|
void GetQTImportPlugin(ImportPluginList *importPluginList,
|
|
UnusableImportPluginList *unusableImportPluginList);
|
|
|
|
#endif
|
|
|
|
// Indentation settings for Vim and Emacs.
|
|
// Please do not modify past this point.
|
|
//
|
|
// Local Variables:
|
|
// c-basic-offset: 3
|
|
// indent-tabs-mode: nil
|
|
// End:
|
|
//
|
|
// vim: et sts=3 sw=3
|
|
|
|
|