Thread
:
operator += with user-defined classes.
View Single Post
Feb 20th, 2005, 1:01 PM
#
1
uman
Expert Programmer
Join Date: Dec 2004
Posts: 794
Rep Power:
4
operator += with user-defined classes.
Hi, the operator + function for my class works fine, but I think I'm having trouble with the +=. Is this how you should do it?
(
Toggle Plain Text
)
Scene& Scene::operator +=(Scene param) { *this=*this+param; return *this; }
Scene& Scene::operator +=(Scene param) { *this=*this+param; return *this; }
uman
View Public Profile
Find More Posts by uman