Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #ifndef PRAVOUGAONIK_HPP_INCLUDED
- #define PRAVOUGAONIK_HPP_INCLUDED
- #include <iostream>
- using namespace std;
- class Pravougaonik{
- protected:
- double a, b;
- public:
- double geta();
- double getb();
- virtual void seta(double a1);
- virtual void setb(double b1);
- double getP();
- double getO();
- Pravougaonik();
- Pravougaonik(double a2, double b2);
- Pravougaonik(const Pravougaonik& p);
- };
- #endif // PRAVOUGAONIK_HPP_INCLUDED
Advertisement
Add Comment
Please, Sign In to add comment