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