1
0
mirror of https://github.com/cookiengineer/audacity synced 2026-03-22 14:15:51 +01:00
Files
audacity/src/HelpText.h
2021-08-24 16:57:24 -04:00

29 lines
688 B
C++

/**********************************************************************
Tenacity
HelpText.h
James Crook
**********************************************************************/
#ifndef __AUDACITY_HELP_TEXT__
#define __AUDACITY_HELP_TEXT__
class TranslatableString;
class wxString;
#include "Identifier.h"
struct URLStringTag;
//! Distinct type for URLs
using URLString = TaggedIdentifier< URLStringTag >;
TENACITY_DLL_API wxString HelpText( const wxString & Key );
TENACITY_DLL_API TranslatableString TitleText( const wxString & Key );
extern TENACITY_DLL_API const wxString VerCheckArgs();
extern TENACITY_DLL_API wxString FormatHtmlText( const wxString & Text );
#endif