Blame view

src/ExternLib/InternalField/InternalFields_PolProcess.hh 1.06 KB
9a4854f9   Erdogan Furkan   Implémentation de...
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
/*
 * 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:   InternalFieldProcess.hh
 * Author: Furkan
 *
 * 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;
6b9283bc   Erdogan Furkan   Ajout de Con2020,...
39
            bool _addCon2020;
9a4854f9   Erdogan Furkan   Implémentation de...
40
41
42
43
        };
    }
}
#endif /* INTERNALFIELDS_POLPROCESS_HH */