#include "SetupFactory.hpp"

SetupFactory::SetupFactory(const std::string st)
{
	setupType = st;
}

SetupFactory::~SetupFactory()
{

}


Setup* SetupFactory::CreateSetup()
{
	if (setupType == "GETDP")
		return new GetdpSetup;
	else
		return new GetdpSetup;
}

