1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-06-16 16:10:06 +02:00
audacity/src/HelpText.h
Paul Licameli 5e7d41ec07 Each .cpp/.mm file includes corresponding header before any other...
... 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.
2019-03-17 22:54:52 -04:00

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