class WXDLLIMPEXP_BASE wxConsoleAppTraits : public wxConsoleAppTraitsBase
{
public:
+ virtual wxEventLoopBase *CreateEventLoop();
#if wxUSE_TIMER
virtual wxTimerImpl *CreateTimerImpl(wxTimer *timer) { return NULL; };
#endif
class WXDLLIMPEXP_CORE wxGUIAppTraits : public wxGUIAppTraitsBase
{
public:
+ virtual wxEventLoopBase *CreateEventLoop();
#if wxUSE_TIMER
virtual wxTimerImpl *CreateTimerImpl(wxTimer *timer);
#endif
#ifdef __WXGTK__
virtual wxString GetDesktopEnvironment() const;
#endif
+#if wxUSE_SOCKETS
+ virtual GSocketManager *GetSocketManager();
+#endif
};
#endif // wxUSE_GUI