#ifndef _PRIV_H #define _PRIV_H class foo { public: foo() ; // constructor void dump() ; private: int priv_data1, priv_data2 ; } ; #endif