#ifndef _WYRAZ_H #define _WYRAZ_H #include "wektor.h" #include using namespace std; class Wyraz : public Wektor { public: Wyraz(); friend istream& operator>>(istream &in,Wyraz &w); bool operator<(Wyraz &w); friend ostream& operator<<(ostream &out, const Wyraz &w) ; }; #endif