Advertisement
Guest User

Untitled

a guest
Nov 1st, 2014
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.42 KB | None | 0 0
  1. #pragma once
  2. #ifndef _NORMALNY
  3. #define _NORMALNY
  4.  
  5. #include <iostream>
  6. #include <windows.h>
  7. #include <string>
  8. #include <sstream>
  9. #include "podstawowy.h"
  10. #include "abstrakcyjna_klasa.h"
  11.  
  12. using namespace std;
  13.  
  14. class normalny : public podstawowy
  15. {
  16. protected:
  17.     int licznik_limit, limit_bankomatu;
  18. public:
  19.     virtual int wyswietl_saldo();
  20.     virtual int jaki_limit();
  21.     normalny(void);
  22.     ~normalny(void);
  23. };
  24.  
  25. #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement