Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #ifndef LISTAPRACOWNIKOW_H
- #define LISTAPRACOWNIKOW_H
- #include "Pracownik.h"
- #include <iostream>
- using namespace std;
- class ListaPracownikow
- {
- public:
- ListaPracownikow();
- ~ListaPracownikow();
- void Dodaj(Pracownik & p) ;
- void Usun(const Pracownik & wzorzec);
- void WypiszPracownikow() const;
- const Pracownik* Szukaj(const char* nazwisko, const char* imie) const;
- protected:
- private:
- Pracownik* m_pPoczatek;
- int m_nLiczbaPracownikow;
- };
- #endif // LISTAPRACOWNIKOW_H
Add Comment
Please, Sign In to add comment