RequestSourceGet.h
433 Bytes
#ifndef REQUESTSOURCEGET_H
#define REQUESTSOURCEGET_H
#include "RequestFileGetAbstract.h"
namespace TREPS
{
namespace RequestManager
{
class RequestSourceGetClass : public RequestFileGetAbstractClass
{
public:
RequestSourceGetClass(void);
~RequestSourceGetClass(void);
//return request id
string getRequestId(void);
//return path to the source file
string getFilePath(void);
};
}
}
#endif