#ifndef _QTRUNCONTEXT_H_
#define _QTRUNCONTEXT_H_

#include "UIDocument.h"
#include "UINodeParameters.h"
#include "ParameterSet.h"
#include "Network.h"

namespace FD 
{

	class QtRunContext 
	{
		public:
		
		QtRunContext(UIDocument *doc, ParameterSet &params);
		
		bool run();
		
		private:
		
		UIDocument *m_document;
		Network  *m_network;
		ParameterSet m_parameters;
	};

} //namespace FD

#endif


syntax highlighted by Code2HTML, v. 0.9.1