Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #pragma once
- #ifndef _NORMALNY
- #define _NORMALNY
- #include <iostream>
- #include <windows.h>
- #include <string>
- #include <sstream>
- #include "podstawowy.h"
- #include "abstrakcyjna_klasa.h"
- using namespace std;
- class normalny : public podstawowy
- {
- protected:
- int licznik_limit, limit_bankomatu;
- public:
- virtual int wyswietl_saldo();
- virtual int jaki_limit();
- normalny(void);
- ~normalny(void);
- };
- #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement