Re: C++ terminology question

2015-08-12 Thread Scott Kostyshak
On Wed, Aug 12, 2015 at 3:41 PM, Richard Heck wrote: > On 08/11/2015 12:19 PM, Scott Kostyshak wrote: >> >> Is there a term for the type of function that is >> notifyCursorLeavesOrEnters, declared in Cursor.h ? It is not a member >> function, but takes two Cursors as inputs. > > > I think people j

Re: C++ terminology question

2015-08-12 Thread Richard Heck
On 08/11/2015 12:19 PM, Scott Kostyshak wrote: Is there a term for the type of function that is notifyCursorLeavesOrEnters, declared in Cursor.h ? It is not a member function, but takes two Cursors as inputs. I think people just call these "non-member functions". Richard

C++ terminology question

2015-08-11 Thread Scott Kostyshak
Is there a term for the type of function that is notifyCursorLeavesOrEnters, declared in Cursor.h ? It is not a member function, but takes two Cursors as inputs. Scott