Advertisement
pVinc

axe.hpp

May 31st, 2021
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. #pragma once
  2. class Axe {
  3.  
  4. private:
  5. float min;
  6. float max;
  7. float interval;
  8.  
  9. public:
  10. Axe(float nmin, float nmax, float ninterval);
  11. void setmin(float nmin);
  12. void setmax(float nmax);
  13. void setinterval(float ninterval);
  14. float getmin();
  15. float getmax();
  16. float getinterval();
  17.  
  18. void wypisz();
  19. };
  20.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement