ProcessTTCatToParam.hh
922 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
/*
* ProcessTTCatToParam.hh
*
* Created on: Jan 31, 2019
* Author: AKKA
*/
#ifndef PROCESSTTCatToParam_HH_
#define PROCESSTTCatToParam_HH_
#include "SingleParamProcess.hh"
namespace AMDA {
namespace Parameters {
/**
* @class ProcessTTCatToParam
* @brief Transform a TimeTable or a Catalog to a parameter
*/
class ProcessTTCatToParam : public AMDA::Parameters::SingleParamProcess_CRTP<ProcessTTCatToParam> {
public:
/**
* @brief Constructor.
*/
ProcessTTCatToParam(Parameter ¶meter);
/**
* @brief Copy Constructor.
*/
ProcessTTCatToParam(const ProcessTTCatToParam& pProcess, Parameter &pParameter) ;
/**
* @brief Destructor.
*/
~ProcessTTCatToParam();
// Overload Process methods
/**
* @overload Process::init()
*/
TimeStamp init();
virtual void updateInfo(Parameter ¶meter);
};
} /* namespace Parameters */
} /* namespace AMDA */
#endif /* PROCESSTTCatToParam_HH_ */