RequestExportOp.h
927 Bytes
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#ifndef REQUESTEXPORTOP_H
#define REQUESTEXPORTOP_H
#include "RequestAbstract.h"
namespace TREPS
{
namespace RequestManager
{
class RequestExportOpClass : public RequestAbstractClass
{
public:
RequestExportOpClass(void);
~RequestExportOpClass(void);
//return request id
string getRequestId(void);
//load request inputs
bool load(RequestLoaderClass *loader);
//run request
bool run(void);
//write request result
void writeResult(ResultWriterClass *writer);
//get suffix used for result file
string getResultFileSuffix(void);
//get a path to a result xml file
string getXMLFilePath(void);
//get string result
string getStringResult(void);
private:
string format;
string structure;
t_TimeFormat timeFormat;
string timePattern;
bool success;
};
}
}
#endif