Advertisement
Guest User

Untitled

a guest
Apr 24th, 2014
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. #ifndef _SWIAT_H
  2. #define _SWIAT_H
  3. #include "naglowki.h"
  4. #include <iostream>
  5.  
  6.  
  7. class Organizm ;
  8. class Swiat
  9. {
  10. public: Swiat(int bokA) // Konstruktor klasy
  11. {
  12. tablica_organizmow = new Organizm*[bokA];
  13. }
  14. private:
  15.  
  16. Organizm** tablica_organizmow;
  17.  
  18. };
  19.  
  20.  
  21. #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement