Timestamp_FromProcess.hh 1.02 KB
/*
 * 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 &parameter);
            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 */