#ifndef SETUPMOUNTEDHISTORYMODULE_HEADERFILE
#define SETUPMOUNTEDHISTORYMODULE_HEADERFILE

#include "Agent.h"
#include "HistoryModule.h"

class SetupMountedHistoryModule {

private:
	HistoryModule* historyModule;

	Agent* hostAgent;

public:
	SetupMountedHistoryModule();
	SetupMountedHistoryModule(HistoryModule* historyModule);

	bool setHistoryModule(HistoryModule* historyModule);
	HistoryModule* getHistoryModule();

	bool setHostAgent(Agent* hostAgent);
	Agent* getHostAgent();

};

#endif