Mail Archives: djgpp/1997/02/24/06:56:52
Mark T Logan wrote:
>
> (please don't comment on my programming form, I know it needs work)
But if there are some errors, I think you should know about them.
>
> typedef class vertex
That can be done simplyer with the same effect:
class vertex
is enough (no need for a typedef)
> friend lindef;
should be:
friend class lindef;
> friend seg;
What is `seg`? If it is a class, then it should be:
friend class seg;
> get_x() { return x; }
> get_y() { return y; }
> }
Here you forgot a semicolon after the }
>
> typedef class lindef
> {
> friend seg;
same as above.
Robert
--
*****************************************************************
* Robert Hoehne, Fakultaet fuer Mathematik, TU-Chemnitz-Zwickau *
* Post: Am Berg 3, D-09573 Dittmannsdorf *
* e-Mail: Robert DOT Hoehne AT Mathematik DOT TU-Chemnitz DOT DE *
* WWW: http://www.tu-chemnitz.de/~rho *
*****************************************************************
- Raw text -