#ifndef D_H // Fichier D.h #define D_H class D { public : D(int n = 10); virtual ~D(void); private: int* _array; int _n; }; #endif // D H