I have a class A which has to have a a class passed to it; From A I have two classes B and C; is it possible for B and C to use the constructor from A, as apposed to the default constructor.
A
/ \
B C
A::A(randomNumber &rnd)
{
....
}