InternalFields_PolProcess.hh 1.09 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:   InternalFields_PolProcess.hh
 * Author: Furkan - AKKA I&S
 *
 * Created on July 5, 2022, 4:14 PM
 */

#ifndef INTERNALFIELDS_POLPROCESS_HH
#define INTERNALFIELDS_POLPROCESS_HH

#include "SingleParamProcess.hh"
#include "InternalFields.hh"

namespace AMDA
{
    namespace Parameters
    {

        class InternalFields_PolProcess : public AMDA::Parameters::SingleParamProcess_CRTP<InternalFields_PolProcess>
        {
        public:
            InternalFields_PolProcess(Parameter &parameter);
            InternalFields_PolProcess(const InternalFields_PolProcess &pProcess, Parameter &pParameter);
            virtual ~InternalFields_PolProcess();

            /**
             * @overload DataWriter::init()
             */
            TimeStamp init();

        protected:
            std::string _processType;
            unsigned int _addCon2020;
        };
    }
}
#endif /* INTERNALFIELDS_POLPROCESS_HH */