From 75b0e3e0a2aefe454973ad301a2344b5204ceb74 Mon Sep 17 00:00:00 2001 From: Maciej Suminski Date: Thu, 11 Aug 2016 14:41:07 +0200 Subject: [PATCH] Missing include in reporter.h --- include/reporter.h | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/include/reporter.h b/include/reporter.h index a00dd50e70..e5599ea5cb 100644 --- a/include/reporter.h +++ b/include/reporter.h @@ -25,6 +25,8 @@ #ifndef _REPORTER_H_ #define _REPORTER_H_ +#include + /** * @file reporter.h * @author Wayne Stambaugh @@ -32,7 +34,6 @@ * me to write this. */ -class wxString; class wxTextCtrl; class wxHtmlListbox; class WX_HTML_REPORT_PANEL; @@ -81,11 +82,8 @@ public: REPORTER& Report( const char* aText, SEVERITY aSeverity = RPT_UNDEFINED ); REPORTER& operator <<( const wxString& aText ) { return Report( aText ); } - REPORTER& operator <<( const wxChar* aText ) { return Report( wxString( aText ) ); } - REPORTER& operator <<( wxChar aChar ) { return Report( wxString( aChar ) ); } - REPORTER& operator <<( const char* aText ) { return Report( aText ); } };