KT17_CartProcess.hh
961 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
/*
* 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: KT17_Process.hh
* Author: Furkan - AKKA I&S
*
* Created on January 19, 2022, 4:14 PM
*/
#ifndef KT17_CARTPROCESS_HH
#define KT17_CARTPROCESS_HH
#include "SingleParamProcess.hh"
#include "KT17.hh"
namespace AMDA
{
namespace Parameters
{
class KT17_CartProcess : public AMDA::Parameters::SingleParamProcess_CRTP<KT17_CartProcess>
{
public:
// InternalFieldProcess(void);
KT17_CartProcess(Parameter ¶meter);
KT17_CartProcess(const KT17_CartProcess &pProcess, Parameter &pParameter);
virtual ~KT17_CartProcess();
/**
* @overload DataWriter::init()
*/
TimeStamp init();
};
}
}
#endif /* KT17_CARTPROCESS_HH */