mirror of
https://github.com/cookiengineer/audacity
synced 2025-06-16 16:10:06 +02:00
... except Audacity.h This forces us to make each header contain all forward declarations or nested headers that it requires, rather than depend on context.
20 lines
386 B
C++
20 lines
386 B
C++
/**********************************************************************
|
|
|
|
Audacity: A Digital Audio Editor
|
|
|
|
HelpText.h
|
|
|
|
James Crook
|
|
|
|
**********************************************************************/
|
|
|
|
#ifndef __AUDACITY_HELP_TEXT__
|
|
#define __AUDACITY_HELP_TEXT__
|
|
|
|
class wxString;
|
|
|
|
wxString HelpText( const wxString & Key );
|
|
wxString TitleText( const wxString & Key );
|
|
|
|
#endif
|