RequestResultInfo.h 441 Bytes
#ifndef REQUESTRESULTINFO_H
#define REQUESTRESULTINFO_H

#include "RequestFileInfoAbstract.h"

namespace TREPS
{
	namespace RequestManager
	{
		class RequestResultInfoClass : public RequestFileInfoAbstractClass
		{
			public:
				RequestResultInfoClass(void);

				~RequestResultInfoClass(void);

				//return request id
				string getRequestId(void);

				//get the path to the result file
				string getFilePath(void);
		}; 

	}
}

#endif