User profile: monparlour

User info
User name:monparlour
Old user name:Markhiggins
History
Joined:
Number of posts:23
Latest posts:

Passing objects into class constructors
I am still workign at this, [code] #include <iostream> using namespace std; class Point{ public:...

Passing objects into class constructors
Updated code: [code] class Point{ public: int x; int y; Point(int px, int py): x(px), y(py){} frie...

Passing objects into class constructors
So then I do now need to define lines 31-33? I can go ahead and start making geometric functions (a...

Passing objects into class constructors
I was trying to think about how to define the Circle constructor there. I'm looking to have the Circ...

Passing objects into class constructors
Hi All, I am working on a problem where I am meant to create a Point class, and then use these obj...