kfr

Fast, modern C++ DSP framework, FFT, Sample Rate Conversion, FIR/IIR/Biquad Filters (SSE, AVX, AVX-512, ARM NEON)
Log | Files | Refs | README

commit 4c4564758328532bdf5958e2c99834b2bbc3f870
parent 85149c8e6ebceaeacddfe74b295d266e92312ea7
Author: d.levin256@gmail.com <d.levin256@gmail.com>
Date:   Wed,  3 Aug 2022 19:02:17 +0100

Header for shape.hpp

Diffstat:
Minclude/kfr/base/shape.hpp | 27+++++++++++++++++++++++++++
1 file changed, 27 insertions(+), 0 deletions(-)

diff --git a/include/kfr/base/shape.hpp b/include/kfr/base/shape.hpp @@ -1,3 +1,30 @@ +/** @addtogroup array + * @{ + */ +/* + Copyright (C) 2016 D Levin (https://www.kfrlib.com) + This file is part of KFR + + KFR is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 2 of the License, or + (at your option) any later version. + + KFR is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with KFR. + + If GPL is not suitable for your project, you must purchase a commercial license to use KFR. + Buying a commercial license is mandatory as soon as you develop commercial activities without + disclosing the source code of your own applications. + See https://www.kfrlib.com for details. + */ +#pragma once + #include "impl/static_array.hpp" #include "../simd/shuffle.hpp"