mirror of
https://github.com/cookiengineer/audacity
synced 2025-07-25 17:08:07 +02:00
!!! THERE WILL NO DOUBT BE BUGS !!! This is a big one and there's still several things to complete. Just want to get this in the wild to start receiving feedback. One big thing right now is that it will NOT load pre-aup3 files. An importer is on the way for that.
19 lines
409 B
C++
19 lines
409 B
C++
/**********************************************************************
|
|
|
|
Audacity: A Digital Audio Editor
|
|
|
|
Benchmark.h
|
|
|
|
Dominic Mazzoni
|
|
|
|
**********************************************************************/
|
|
|
|
#ifndef __AUDACITY_BENCHMARK__
|
|
#define __AUDACITY_BENCHMARK__
|
|
|
|
class AudacityProject;
|
|
|
|
void RunBenchmark( wxWindow *parent, AudacityProject &project );
|
|
|
|
#endif // define __AUDACITY_BENCHMARK__
|