From: John L. <jr...@us...> - 2005-12-02 06:38:39
|
Update of /cvsroot/wxlua/wxLua/modules/wxluasocket/include In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1520/modules/wxluasocket/include Modified Files: dservice.h wxldtarg.h wxlhandl.h wxlsock.h Log Message: restore the stacktree for the wxLua app more code unification for wxLuaDebug classes revert to EnumerateStack, EnumerateStackEntry, EnumerateTable instead of BuildStack, BuildStackList, BuildTableList Index: wxlhandl.h =================================================================== RCS file: /cvsroot/wxlua/wxLua/modules/wxluasocket/include/wxlhandl.h,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** wxlhandl.h 25 Nov 2005 19:03:29 -0000 1.1 --- wxlhandl.h 2 Dec 2005 06:38:31 -0000 1.2 *************** *** 35,42 **** virtual bool ProcessEvent(wxEvent& event) = 0; virtual void DisplayError(const wxString &strError) const = 0; ! ! //#if wxUSE_LUASTACKFRAME FIXME - do we need this? see also wxluadebug/src/staktree.cpp ! // virtual void SetStackFrame(wxLuaStackFrame *pStackFrame) = 0; ! //#endif // wxUSE_LUASTACKFRAME void EnterLuaCriticalSection() { m_luaCriticalSection.Enter(); } --- 35,39 ---- virtual bool ProcessEvent(wxEvent& event) = 0; virtual void DisplayError(const wxString &strError) const = 0; ! virtual void SetStackFrame(wxLuaStackFrame *pStackFrame) = 0; void EnterLuaCriticalSection() { m_luaCriticalSection.Enter(); } Index: dservice.h =================================================================== RCS file: /cvsroot/wxlua/wxLua/modules/wxluasocket/include/dservice.h,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** dservice.h 1 Dec 2005 06:43:53 -0000 1.5 --- dservice.h 2 Dec 2005 06:38:31 -0000 1.6 *************** *** 244,249 **** private: bool AtBreakPoint(const wxFileName &fileName, int lineNumber) const; - wxString GetTableInfo(int index); - wxString GetUserDataInfo(int index, bool full = true); wxFileName GetDebugInfo(int &lineNumber) const; --- 244,247 ---- Index: wxlsock.h =================================================================== RCS file: /cvsroot/wxlua/wxLua/modules/wxluasocket/include/wxlsock.h,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** wxlsock.h 1 Dec 2005 04:17:29 -0000 1.3 --- wxlsock.h 2 Dec 2005 06:38:31 -0000 1.4 *************** *** 117,129 **** wxString GetAddress() const; // Get the port number of the socket ! int GetPort() const; // Read the whole buffer of size length into buffer buffer from the socket ! int Read(char *buffer, int length); // Write the whole buffer of size length to the socket ! void Write(const char *buffer, int length); // Shutdown the socket in an orderly fashion ! void Shutdown(int how); // Close the open socket ! void Close(); private: --- 117,129 ---- wxString GetAddress() const; // Get the port number of the socket ! int GetPort() const; // Read the whole buffer of size length into buffer buffer from the socket ! int Read(char *buffer, int length); // Write the whole buffer of size length to the socket ! void Write(const char *buffer, int length); // Shutdown the socket in an orderly fashion ! void Shutdown(int how); // Close the open socket ! void Close(); private: *************** *** 170,175 **** int errnum() const { return m_errnum; } ! ! const wxString& description() { return m_description; } private: --- 170,174 ---- int errnum() const { return m_errnum; } ! const wxString& description() const { return m_description; } private: Index: wxldtarg.h =================================================================== RCS file: /cvsroot/wxlua/wxLua/modules/wxluasocket/include/wxldtarg.h,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** wxldtarg.h 1 Dec 2005 06:43:53 -0000 1.4 --- wxldtarg.h 2 Dec 2005 06:38:31 -0000 1.5 *************** *** 148,153 **** bool WaitForConnect() const; bool AtBreakPoint(const wxString &fileName, int lineNumber) const; - wxString GetTableInfo(int index); - wxString GetUserDataInfo(int index, bool full = true); wxString GetDebugInfo(int &lineNumber) const; --- 148,151 ---- |