Making Two Arrays Equal Each Other[code]class Set { private: Time set[10]; int size, place; int MAXSIZE; public: ...
Making Two Arrays Equal Each Other[code]Set::Set() { set[0]; MAXSIZE = 10; place = 0; size = 1; } Set::...
Making Two Arrays Equal Each OtherI would need to overload the = operator, right? Whats the alternative as we havent learned how to d...
Making Two Arrays Equal Each OtherI'm trying to have a getData function transfer all the objects it is holding in its array to a new a...
error C2011: 'Time' : 'class' type redefinitionCouldnt you just get rid of the #include Time.h in the Set.cpp and setDriver.cpp classes? If not, c...
This user does not accept Private Messages