InternalFields_CartProcess.hh
1.14 KB
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
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
/*
* File: InternalFields_CartProcess.hh
* Author: Furkan - AKKA I&S
*
* Created on July 5, 2022, 4:14 PM
*/
#ifndef INTERNALFIELDS_CARTPROCESS_HH
#define INTERNALFIELDS_CARTPROCESS_HH
#include "SingleParamProcess.hh"
#include "InternalFields.hh"
namespace AMDA
{
namespace Parameters
{
class InternalFields_CartProcess : public AMDA::Parameters::SingleParamProcess_CRTP<InternalFields_CartProcess>
{
public:
// InternalFieldProcess(void);
InternalFields_CartProcess(Parameter ¶meter);
InternalFields_CartProcess(const InternalFields_CartProcess &pProcess, Parameter &pParameter);
virtual ~InternalFields_CartProcess();
/**
* @overload DataWriter::init()
*/
TimeStamp init();
protected:
std::string _processType;
unsigned int _addCon2020;
};
}
}
#endif /* INTERNALFIELDS_CARTPROCESS_HH */