mirror of
https://github.com/cookiengineer/audacity
synced 2025-07-20 06:37:42 +02:00
25 lines
607 B
C++
25 lines
607 B
C++
/**********************************************************************
|
|
|
|
Audacity: A Digital Audio Editor
|
|
|
|
QualitySettings.h
|
|
|
|
Paul Licameli split from QualityPrefs.h
|
|
|
|
**********************************************************************/
|
|
|
|
#ifndef __AUDACITY_QUALITY_SETTINGS__
|
|
#define __AUDACITY_QUALITY_SETTINGS__
|
|
|
|
#include "Prefs.h" // for EnumSetting
|
|
|
|
class IntSetting;
|
|
|
|
namespace QualitySettings {
|
|
extern AUDACITY_DLL_API IntSetting DefaultSampleRate;
|
|
extern AUDACITY_DLL_API EnumSetting< sampleFormat > SampleFormatSetting;
|
|
extern AUDACITY_DLL_API sampleFormat SampleFormatChoice();
|
|
}
|
|
|
|
#endif
|