mirror of
https://github.com/cookiengineer/audacity
synced 2025-05-06 23:02:42 +02:00
19 lines
416 B
C++
19 lines
416 B
C++
/**********************************************************************
|
|
|
|
Audacity: A Digital Audio Editor
|
|
|
|
Benchmark.h
|
|
|
|
Dominic Mazzoni
|
|
|
|
**********************************************************************/
|
|
|
|
#ifndef __AUDACITY_BENCHMARK__
|
|
#define __AUDACITY_BENCHMARK__
|
|
|
|
class ProjectSettings;
|
|
|
|
void RunBenchmark( wxWindow *parent, const ProjectSettings &settings );
|
|
|
|
#endif // define __AUDACITY_BENCHMARK__
|