#include "SquareRoot.h" #include namespace MathFunctions { double sqrt(double x) { return std::sqrt(x); } }