produce a 30% speed improvement. However, it doesn't compile.
I looked through over 100 pages of C++ book and didn't find a
hint of a solution. So, who knows the answer to the following problem
that is quite easily resolved in C.
Code: Select all
Class X
{
private:
public:
int G( Y &t);
};
Class Y
{
private:
public:
int C( X &m);
};
If these were functions in C, I'd set an empty prototype for Y ahead
of X.
I literally went though more than 100 pages of a C++ manual
on its how to do classes and found nothing.
Any C++ expert know this one?

