#include using namespace std; #include "oob11.h" // OutOfBounds member functions OutOfBounds::OutOfBounds() { // do nothing } OutOfBounds::OutOfBounds(const string& str) : m_what(str) { // do nothing } string OutOfBounds::what() const { return(m_what) ; }