audacia/src/HelpText.h
Paul Licameli f3d91f488e Remove extern declarations from .cpp files...
... Require the declarations to be in .h files, to be sure graph.pl detects the
dependencies.

Only one more #include was needed in Nyquist.cpp.   This doesn't reveal any
more hidden cycles.
2020-05-28 05:50:25 -04:00

26 lines
593 B
C++

/**********************************************************************
Audacity: A Digital Audio Editor
HelpText.h
James Crook
**********************************************************************/
#ifndef __AUDACITY_HELP_TEXT__
#define __AUDACITY_HELP_TEXT__
class TranslatableString;
class wxString;
wxString HelpText( const wxString & Key );
TranslatableString TitleText( const wxString & Key );
extern const wxString VerCheckArgs();
extern const wxString VerCheckUrl();
extern const wxString VerCheckHtml();
extern wxString FormatHtmlText( const wxString & Text );
#endif