Re: How can I define class methods outside of the class?

2010-12-02 Thread Jeremy
On Dec 1, 10:47 pm, James Mills prolo...@shortcircuit.net.au wrote: On Thu, Dec 2, 2010 at 3:36 PM, Jeremy jlcon...@gmail.com wrote: I have some methods that I need (would like) to define outside of the class.  I know this can be done by defining the function and then setting it equal to

Re: How can I define class methods outside of the class?

2010-12-02 Thread bruno.desthuilli...@gmail.com
On 2 déc, 06:36, Jeremy jlcon...@gmail.com wrote: I have some methods that I need (would like) to define outside of the class.  I know this can be done by defining the function and then setting it equal to some member OT assignement or binding might be the terms you were looking for here ;)

Re: How can I define class methods outside of the class?

2010-12-02 Thread bruno.desthuilli...@gmail.com
On 2 déc, 15:45, Jeremy jlcon...@gmail.com wrote: On Dec 1, 10:47 pm, James Mills prolo...@shortcircuit.net.au wrote: On Thu, Dec 2, 2010 at 3:36 PM, Jeremy jlcon...@gmail.com wrote: I have some methods that I need (would like) to define outside of the class.  I know this can be done

Re: How can I define class methods outside of the class?

2010-12-02 Thread Jeremy
On Dec 2, 10:26 am, bruno.desthuilli...@gmail.com bruno.desthuilli...@gmail.com wrote: On 2 déc, 15:45, Jeremy jlcon...@gmail.com wrote: On Dec 1, 10:47 pm, James Mills prolo...@shortcircuit.net.au wrote: On Thu, Dec 2, 2010 at 3:36 PM, Jeremy jlcon...@gmail.com wrote: I have some

How can I define class methods outside of the class?

2010-12-01 Thread Jeremy
I have some methods that I need (would like) to define outside of the class. I know this can be done by defining the function and then setting it equal to some member of an instance of the class. But, because of the complexity of what I'm doing (I have to set many functions as class methods) I

Re: How can I define class methods outside of the class?

2010-12-01 Thread James Mills
On Thu, Dec 2, 2010 at 3:36 PM, Jeremy jlcon...@gmail.com wrote: I have some methods that I need (would like) to define outside of the class.  I know this can be done by defining the function and then setting it equal to some member of an instance of the class.  But, because of the complexity

Re: How can I define class methods outside of the class?

2010-12-01 Thread Ian Kelly
On 12/1/2010 10:47 PM, James Mills wrote: On Thu, Dec 2, 2010 at 3:36 PM, Jeremyjlcon...@gmail.com wrote: I have some methods that I need (would like) to define outside of the class. I know this can be done by defining the function and then setting it equal to some member of an instance of