Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #ifndef TABLICA_H
- #define TABLICA_H
- class Tablica
- {
- int *tab;
- int rozmiar;
- public:
- Tablica(int rozmiar);
- Tablica(const Tablica &wzor);
- ~Tablica();
- int at(int n);
- void los();
- int * poczatek();
- int * koniec();
- void wyswietl();
- };
- #endif // KLASA_H
Advertisement
Add Comment
Please, Sign In to add comment