/* * 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 { 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 */