Advertisement
Guest User

Untitled

a guest
Mar 26th, 2020
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.73 KB | None | 0 0
  1. #include "pojazdy.h"
  2. #include <iostream>
  3.  
  4. using namespace std;
  5.  
  6. void Pojazdy::set_ilosc(int x) { ilosc = x; }
  7.  
  8. void Pojazdy::dodaj()
  9. {
  10. }
  11.  
  12. void Pojazdy::Petla(Pojazdy**& p, int& size) {
  13. }
  14.  
  15. void Pojazdy::print(Pojazdy** pojazdy, int size) {
  16. }
  17.  
  18.  
  19. void Pojazdy::wyrejestruj(Pojazdy**& pojazdy, int& size) {
  20. }
  21.  
  22. void Pojazdy::wyrejestruj(Pojazdy**& pojazdy, int& size, int index) {
  23. }
  24.  
  25. void Pojazdy::d_pojazd(Pojazdy**& pojazdy, int& size) {
  26.  
  27. }
  28.  
  29.     int Pojazdy::get_ilosc() { return ilosc; }
  30.     string Pojazdy::get_typ() { return typ; }
  31.     string Pojazdy::get_marka() { return marka; }
  32.     string Pojazdy::get_model() { return model; }
  33.     int Pojazdy::get_cena() { return cena; }
  34.     void Pojazdy::set_ilosc(int x);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement