From: John L. <jr...@us...> - 2006-08-28 05:26:24
|
Update of /cvsroot/wxlua/wxLua/modules/wxluasocket/include In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv1034/wxLua/modules/wxluasocket/include Modified Files: dservice.h wxldtarg.h wxluasocket_bind.h Log Message: Finished cleaning up the code, removed all code from internal.h and internal.cpp and moved it to other files. Do not #include internal.h anymore! Have the functions in wxLuaState that only call C lua funcs call C helper funcs in wxlstate.cpp so that you don't have to create a wxLuaState if you don't really need it. Index: dservice.h =================================================================== RCS file: /cvsroot/wxlua/wxLua/modules/wxluasocket/include/dservice.h,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** dservice.h 20 May 2006 19:57:59 -0000 1.11 --- dservice.h 28 Aug 2006 05:26:21 -0000 1.12 *************** *** 38,42 **** #include "wxlua/include/wxlua.h" - #include "wxlua/include/internal.h" #include "wxluasocket/include/wxldserv.h" --- 38,41 ---- Index: wxluasocket_bind.h =================================================================== RCS file: /cvsroot/wxlua/wxLua/modules/wxluasocket/include/wxluasocket_bind.h,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** wxluasocket_bind.h 9 Jun 2006 22:51:34 -0000 1.3 --- wxluasocket_bind.h 28 Aug 2006 05:26:21 -0000 1.4 *************** *** 22,27 **** #include "wxlua/include/wxlstate.h" #include "wxlua/include/wxlbind.h" - #include "wxlua/include/internal.h" - // binding class class wxLuaBinding_wxluasocket : public wxLuaBinding --- 22,25 ---- Index: wxldtarg.h =================================================================== RCS file: /cvsroot/wxlua/wxLua/modules/wxluasocket/include/wxldtarg.h,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** wxldtarg.h 20 May 2006 19:57:59 -0000 1.10 --- wxldtarg.h 28 Aug 2006 05:26:21 -0000 1.11 *************** *** 18,22 **** #include "wxluasocket/include/wxluasocketdefs.h" #include "wxlua/include/wxlua.h" - #include "wxlua/include/internal.h" #include "wxluadebug/include/wxldebug.h" #include "wxluasocket/include/wxldbgio.h" --- 18,21 ---- |