//
//####################################################################
//
// SupportRoutines.cpp: implementation of the SupportRoutines class.
//
//####################################################################
//
#include "SupportRoutines.h"

SupportRoutines::SupportRoutines()
{}

SupportRoutines::~SupportRoutines()
{}

double SupportRoutines::timesTwo(double x)
{
    return 2.0*x;
}
