#ifndef AUXIL_H #define AUXIL_H // Aux class declaration. class Aux { private: double auxBudget; public: Aux() { auxBudget = 0; } void addBudget(double); //this is the (friend) member function prototype double getDivBudget() { return auxBudget; } }; #endif