// Fill in the blanks.... and replace "Blank" by the name of your class // Replace the operations/functions attributes #ifndef Blank_H #define Blank_H class Blank { public: Blank():blankValue(0){}//default constructor int get(){return blankValue;} void set(int newValue){ blankValue = newValue;} private: int blankValue; }; // Blank #endif