[wpdev-commits] wolfpack/python global.cpp,1.149,1.150 pyaccounts.h,1.2,NONE
Brought to you by:
rip,
thiagocorrea
From: Sebastian H. <dar...@us...> - 2004-08-31 00:54:43
|
Update of /cvsroot/wpdev/wolfpack/python In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1296/python Modified Files: global.cpp Removed Files: pyaccounts.h Log Message: accounts iterator Index: global.cpp =================================================================== RCS file: /cvsroot/wpdev/wolfpack/python/global.cpp,v retrieving revision 1.149 retrieving revision 1.150 diff -C2 -d -r1.149 -r1.150 *** global.cpp 31 Aug 2004 00:48:05 -0000 1.149 --- global.cpp 31 Aug 2004 00:54:32 -0000 1.150 *************** *** 56,60 **** #include "../basedef.h" - #include "pyaccounts.h" #include "pypacket.h" #include "regioniterator.h" --- 56,59 ---- *************** *** 2042,2059 **** } - /* - \function wolfpack.accounts.iterator - \description Return an iterator object to iterate trough all account objects. - */ - static PyObject* wpAccountsIterator( PyObject* self, PyObject* args ) - { - Q_UNUSED( self ); - Q_UNUSED( args ); - - wpAccountsIter *obj = PyObject_New(wpAccountsIter, &wpAccountsIterType); - obj->it = 0; - return (PyObject*)obj; - } - /*! wolfpack.accounts --- 2041,2044 ---- *************** *** 2062,2066 **** static PyMethodDef wpAccounts[] = { - { "iterator", wpAccountsIterator, METH_VARARGS, "" }, { "count", wpAccountsCount, METH_VARARGS, "" }, { "find", wpAccountsFind, METH_VARARGS, "Finds an account object." }, --- 2047,2050 ---- --- pyaccounts.h DELETED --- |