1#pragma once 2 3#include <OpAdd.h> 4#include <OpMul.h> 5#include <OpSub.h> 6 7namespace mathfunctions { 8double sqrt(double x); 9} 10 11