NoName977

ListaPracownikow.h

Jan 21st, 2018
166
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.56 KB | None | 0 0
  1. #ifndef LISTAPRACOWNIKOW_H
  2. #define LISTAPRACOWNIKOW_H
  3. #include "Pracownik.h"
  4. #include <iostream>
  5. using namespace std;
  6.  
  7. class ListaPracownikow
  8. {
  9.     public:
  10.         ListaPracownikow();
  11.         ~ListaPracownikow();
  12.         void Dodaj(Pracownik & p) ;
  13.         void Usun(const Pracownik & wzorzec);
  14.         void WypiszPracownikow() const;
  15.         const Pracownik* Szukaj(const char* nazwisko, const char* imie) const;
  16.  
  17.     protected:
  18.  
  19.     private:
  20.         Pracownik* m_pPoczatek;
  21.         int m_nLiczbaPracownikow;
  22.  
  23.  
  24.  
  25. };
  26.  
  27. #endif // LISTAPRACOWNIKOW_H
Add Comment
Please, Sign In to add comment