J
Jeremy Cowles
namespace Logic
Thats cool, but it is not what was described. Here is the solution that was
suggested:
namespace Logic
{
struct A { void draw( ) { } };
struct B : A { void draw( ) { } };
struct C : A { void draw( ) { } };
}
And this forces the logic to know how to draw, and my question is: isn't
this bad?
Jeremy
Thats cool, but it is not what was described. Here is the solution that was
suggested:
namespace Logic
{
struct A { void draw( ) { } };
struct B : A { void draw( ) { } };
struct C : A { void draw( ) { } };
}
And this forces the logic to know how to draw, and my question is: isn't
this bad?
Jeremy