Blame view

server/kernel/src/RequestManager/RequestResultInfo.h 441 Bytes
346b85c6   Benjamin Renard   First commit with...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#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