Files Classes Functions Hierarchy
00001 #include <mfbttest01header01.h> 00002 #include <mfbttest01header02.h> 00003 00004 #include <iostream> 00005 using namespace std; 00006 00007 mfbttest01header02::mfbttest01header02(int data_) 00008 : data(data_) 00009 { 00010 } 00011 00012 void mfbttest01header02::print() 00013 { 00014 cout << "H2: data=" << data << endl; 00015 } 00016 00017 void mfbttest01header02::print2() 00018 { 00019 mfbttest01header01 h(data); 00020 00021 h.print(); 00022 } 00023 00024
1.5.8