thanks for the response, but waht i meant was:
class parent
{
protected:
blah;
}
class child : public parent{
public:
bloop;
}
in this case, would i NEED to define constructors and destructors for the parent class? i don't plan to use the parent class in any situation, its only there for...