mirror of
https://github.com/cookiengineer/audacity
synced 2026-03-22 06:05:57 +01:00
21 lines
418 B
C++
21 lines
418 B
C++
/**********************************************************************
|
|
|
|
Tenacity
|
|
|
|
Benchmark.h
|
|
|
|
Dominic Mazzoni
|
|
|
|
**********************************************************************/
|
|
|
|
#ifndef __AUDACITY_BENCHMARK__
|
|
#define __AUDACITY_BENCHMARK__
|
|
|
|
class wxWindow;
|
|
class AudacityProject;
|
|
|
|
TENACITY_DLL_API
|
|
void RunBenchmark( wxWindow *parent, AudacityProject &project );
|
|
|
|
#endif // define __AUDACITY_BENCHMARK__
|