Timestamp_Process.hh
972 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: TimeStamp_Process.hh
* Author: Furkan - AKKA I&S
*
* Created on September 19, 2022, 4:14 PM
*/
#ifndef TIMESTAMP_PROCESS_HH
#define TIMESTAMP_PROCESS_HH
#include "SingleParamProcess.hh"
namespace AMDA
{
namespace Parameters
{
class Timestamp_Process : public AMDA::Parameters::SingleParamProcess_CRTP<Timestamp_Process>
{
public:
Timestamp_Process(Parameter ¶meter);
Timestamp_Process(const Timestamp_Process &pProcess, Parameter &pParameter);
virtual ~Timestamp_Process();
/**
* @overload DataWriter::init()
*/
TimeStamp init();
protected:
std::string _processType;
};
}
}
#endif /* TIMESTAMP_PROCESS_HH */