Consider the following C++ program. At the top you can see theinterface for the SafeArray class that lists the public methods andthe private attributes. Next, we have the implementation of all ofthe class methods. Finally, we have a short main program that usesthe SafeArray class.
#include <string>#include <cstdlib>#include <fstream>#include <iostream>#include <vector>using namespace std;// Interface for SafeArray class//——————————–class SafeArray{public: SafeArray(); SafeArray(const SafeArray & copy); ~SafeArray(); bool GetElement(const int i, float & Value) const; bool SetElement(const int i, float Value); bool ReadArray(const string Filename); bool WriteArray(const string Filename) const;
OR
OR