/***********************************************************     Copyright 2003 Rick Miller - Pulp Free Press           This source code accompanies the text C++ For Artists     and is provided for instructional purposes only. No      warranty concerning the quality of the code is expressed     or implied.	 You are free to use this code in your programs so long	 as this copyright notice is included in its entirety.**********************************************************/#ifndef D_H#define D_H#include <iostream>using namespace std;#include "b.h"#include "c.h"class D :  public B,  public C { public:    D(){cout<<"D constructor"<<endl;}    virtual ~D(){cout<<"D destructor"<<endl;}};#endif
