87: cout << String::ConstructorCount << endl; 88:

87: cout << String::ConstructorCount << endl;
88: return 0;
89: }
90: void PrintFunc (Employee Edie)
91: {
92: cout << “Imie i nazwisko: “;
93: cout << Edie.GetFirstName().GetString();
94: cout << ” ” << Edie.GetLastName().GetString();
95: cout << “.nAdres: “;
96: cout << Edie.GetAddress().GetString();
97: cout << “.nPensja: ” ;
98: cout << Edie.GetSalary();
99: cout << endl;
100: }
101:
102: void rPrintFunc (const Employee& Edie)
103: {
104: cout << “Imie i nazwisko: “;
105: cout << Edie.GetFirstName().GetString();
106: cout << ” ” << Edie.GetLastName().GetString();
107: cout << “nAdres: “;
108: cout << Edie.GetAddress().GetString();
109: cout << “nPensja: ” ;
110: cout

Random Posts




You can follow any responses to this entry through the RSS 2.0 feed. You can leave a response, or trackback from your own site.

Leave a Reply