CS 340 - 1/17/13 Last Time: Preprocessor Compile step => produces the object file(s) Almost complete, missing address resolution for functions/methods or file scope variables. Link Step => resolse unresolved addresses => results in the executable file =========================== Class 1: Point class set/get methods data members: x and y Constructor Destructor print equals class Point3d: Point2d { private: int x_, y_; public: void setX (int); int getX (); { return x_ } void x (int); // setX() int x (); // getX() }; void Point::setX (int value) { x_ = value; } void Point::x (int value) { x_ = value; }