removed extra trailing semicolons which break compilation for some compilers
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16858 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -23,47 +23,65 @@
|
|||||||
#include "wx/defs.h"
|
#include "wx/defs.h"
|
||||||
#include "wx/wxchar.h"
|
#include "wx/wxchar.h"
|
||||||
|
|
||||||
|
// ----------------------------------------------------------------------------
|
||||||
|
// wxMessageOutput is a class abstracting formatted output target, i.e.
|
||||||
|
// something you can printf() to
|
||||||
|
// ----------------------------------------------------------------------------
|
||||||
|
|
||||||
class WXDLLEXPORT wxMessageOutput
|
class WXDLLEXPORT wxMessageOutput
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
virtual ~wxMessageOutput() {};
|
virtual ~wxMessageOutput() { }
|
||||||
|
|
||||||
// show a message to the user
|
// show a message to the user
|
||||||
virtual void Printf(const wxChar* format, ...) ATTRIBUTE_PRINTF_2 = 0;
|
virtual void Printf(const wxChar* format, ...) ATTRIBUTE_PRINTF_2 = 0;
|
||||||
|
|
||||||
// gets the current wxMessageOutput object
|
// gets the current wxMessageOutput object
|
||||||
static wxMessageOutput* Get();
|
static wxMessageOutput* Get();
|
||||||
|
|
||||||
// sets the global wxMessageOutput instance; returns the previous one
|
// sets the global wxMessageOutput instance; returns the previous one
|
||||||
static wxMessageOutput* Set(wxMessageOutput* msgout);
|
static wxMessageOutput* Set(wxMessageOutput* msgout);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
static wxMessageOutput* ms_msgOut;
|
static wxMessageOutput* ms_msgOut;
|
||||||
};
|
};
|
||||||
|
|
||||||
// sends output to stderr
|
// ----------------------------------------------------------------------------
|
||||||
|
// implementation which sends output to stderr
|
||||||
|
// ----------------------------------------------------------------------------
|
||||||
|
|
||||||
class WXDLLEXPORT wxMessageOutputStderr : public wxMessageOutput
|
class WXDLLEXPORT wxMessageOutputStderr : public wxMessageOutput
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
wxMessageOutputStderr() {};
|
wxMessageOutputStderr() { }
|
||||||
|
|
||||||
virtual void Printf(const wxChar* format, ...) ATTRIBUTE_PRINTF_2;
|
virtual void Printf(const wxChar* format, ...) ATTRIBUTE_PRINTF_2;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// ----------------------------------------------------------------------------
|
||||||
|
// implementation which shows output in a message box
|
||||||
|
// ----------------------------------------------------------------------------
|
||||||
|
|
||||||
#if wxUSE_GUI
|
#if wxUSE_GUI
|
||||||
|
|
||||||
// shows output in a message box
|
|
||||||
class WXDLLEXPORT wxMessageOutputMessageBox : public wxMessageOutput
|
class WXDLLEXPORT wxMessageOutputMessageBox : public wxMessageOutput
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
wxMessageOutputMessageBox() {};
|
wxMessageOutputMessageBox() { }
|
||||||
|
|
||||||
virtual void Printf(const wxChar* format, ...) ATTRIBUTE_PRINTF_2;
|
virtual void Printf(const wxChar* format, ...) ATTRIBUTE_PRINTF_2;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // wxUSE_GUI
|
#endif // wxUSE_GUI
|
||||||
|
|
||||||
|
// ----------------------------------------------------------------------------
|
||||||
|
// implementation using wxLog (mainly for backwards compatibility)
|
||||||
|
// ----------------------------------------------------------------------------
|
||||||
|
|
||||||
class WXDLLEXPORT wxMessageOutputLog : public wxMessageOutput
|
class WXDLLEXPORT wxMessageOutputLog : public wxMessageOutput
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
wxMessageOutputLog() {};
|
wxMessageOutputLog() { }
|
||||||
|
|
||||||
virtual void Printf(const wxChar* format, ...) ATTRIBUTE_PRINTF_2;
|
virtual void Printf(const wxChar* format, ...) ATTRIBUTE_PRINTF_2;
|
||||||
};
|
};
|
||||||
|
Reference in New Issue
Block a user