ProcessSumIntoTableIndexes.hh
940 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
/*
* ProcessSumIntoTableIndexes.hh
*
* Created on: Mar 26, 2019
* Author: AKKA IS
*/
#ifndef PROCESSSUMINTOTABLEINDEXES_HH_
#define PROCESSSUMINTOTABLEINDEXES_HH_
#include "SingleParamProcess.hh"
namespace AMDA {
namespace Parameters {
/**
* @class ProcessSumIntoTableIndexes
* @brief Process to compute the sum of parameter data into table indexes.
*/
class ProcessSumIntoTableIndexes : public AMDA::Parameters::SingleParamProcess_CRTP<ProcessSumIntoTableIndexes> {
public:
/**
* @brief Constructor.
*/
ProcessSumIntoTableIndexes(Parameter ¶meter);
/**
* @brief Copy Constructor.
*/
ProcessSumIntoTableIndexes(const ProcessSumIntoTableIndexes& pProcess, Parameter &pParameter) ;
/**
* @brief Destructor.
*/
~ProcessSumIntoTableIndexes();
/**
* @overload Process::init()
*/
TimeStamp init();
};
} /* namespace Parameters */
} /* namespace AMDA */
#endif /* PROCESSSUMINTOTABLEINDEXES_HH_ */