Line data Source code
1 : /** 2 : * \file BufferFilter.h 3 : */ 4 : 5 : #ifndef ATK_TOOLS_BUFFERFILTER_H 6 : #define ATK_TOOLS_BUFFERFILTER_H 7 : 8 : #include <ATK/Core/TypedBaseFilter.h> 9 : #include <ATK/Tools/config.h> 10 : 11 : namespace ATK 12 : { 13 : /// Buffers input signals 14 : template<typename DataType_> 15 : class ATK_TOOLS_EXPORT BufferFilter final : public TypedBaseFilter<DataType_> 16 : { 17 : protected: 18 : /// Simplify parent calls 19 : using Parent = TypedBaseFilter<DataType_>; 20 : using typename Parent::DataType; 21 : using Parent::converted_inputs; 22 : using Parent::outputs; 23 : using Parent::nb_input_ports; 24 : using Parent::nb_output_ports; 25 : 26 : public: 27 : /*! 28 : * @brief Constructor 29 : * @param nb_channels is the number of input and output channels 30 : */ 31 : explicit BufferFilter(gsl::index nb_channels = 1); 32 : /// Destructor 33 1 : ~BufferFilter() override = default; 34 : protected: 35 : void process_impl(gsl::index size) const final; 36 : }; 37 : } 38 : 39 : #endif