#ifndef HEADER_CLASA_BAZA #define HEADER_CLASA_BAZA #include using namespace std; class Baza { protected: int atribut; public: Baza(int i):atribut(i){} }; #endif