From 60a037a8e37b12a774486a28e4d135aea85d6d2c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Simon=20St=C3=BCrz?= Date: Tue, 13 Mar 2018 16:35:06 +0100 Subject: [PATCH] Add copyright --- multisensor/sensordataprocessor.cpp | 22 ++++++++++++++++++++++ multisensor/sensordataprocessor.h | 22 ++++++++++++++++++++++ multisensor/sensorfilter.cpp | 22 ++++++++++++++++++++++ multisensor/sensorfilter.h | 23 ++++++++++++++++++++++- 4 files changed, 88 insertions(+), 1 deletion(-) diff --git a/multisensor/sensordataprocessor.cpp b/multisensor/sensordataprocessor.cpp index 573c9a84..414f8dd0 100644 --- a/multisensor/sensordataprocessor.cpp +++ b/multisensor/sensordataprocessor.cpp @@ -1,3 +1,25 @@ +/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * + * * + * Copyright (C) 2015-2018 Simon Stuerz * + * * + * This file is part of nymea. * + * * + * This library is free software; you can redistribute it and/or * + * modify it under the terms of the GNU Lesser General Public * + * License as published by the Free Software Foundation; either * + * version 2.1 of the License, or (at your option) any later version. * + * * + * This library 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 * + * Lesser General Public License for more details. * + * * + * You should have received a copy of the GNU Lesser General Public * + * License along with this library; If not, see * + * . * + * * + * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ + #include "sensordataprocessor.h" #include "extern-plugininfo.h" #include "math.h" diff --git a/multisensor/sensordataprocessor.h b/multisensor/sensordataprocessor.h index aba7fe94..2a923f12 100644 --- a/multisensor/sensordataprocessor.h +++ b/multisensor/sensordataprocessor.h @@ -1,3 +1,25 @@ +/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * + * * + * Copyright (C) 2015-2018 Simon Stuerz * + * * + * This file is part of nymea. * + * * + * This library is free software; you can redistribute it and/or * + * modify it under the terms of the GNU Lesser General Public * + * License as published by the Free Software Foundation; either * + * version 2.1 of the License, or (at your option) any later version. * + * * + * This library 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 * + * Lesser General Public License for more details. * + * * + * You should have received a copy of the GNU Lesser General Public * + * License along with this library; If not, see * + * . * + * * + * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ + #ifndef SENSORDATAPROCESSOR_H #define SENSORDATAPROCESSOR_H diff --git a/multisensor/sensorfilter.cpp b/multisensor/sensorfilter.cpp index 2a69dd0d..4d036912 100644 --- a/multisensor/sensorfilter.cpp +++ b/multisensor/sensorfilter.cpp @@ -1,3 +1,25 @@ +/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * + * * + * Copyright (C) 2015-2018 Simon Stuerz * + * * + * This file is part of nymea. * + * * + * This library is free software; you can redistribute it and/or * + * modify it under the terms of the GNU Lesser General Public * + * License as published by the Free Software Foundation; either * + * version 2.1 of the License, or (at your option) any later version. * + * * + * This library 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 * + * Lesser General Public License for more details. * + * * + * You should have received a copy of the GNU Lesser General Public * + * License along with this library; If not, see * + * . * + * * + * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ + #include "sensorfilter.h" #include diff --git a/multisensor/sensorfilter.h b/multisensor/sensorfilter.h index d137ed13..3d9dc91e 100644 --- a/multisensor/sensorfilter.h +++ b/multisensor/sensorfilter.h @@ -1,3 +1,25 @@ +/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * + * * + * Copyright (C) 2015-2018 Simon Stuerz * + * * + * This file is part of nymea. * + * * + * This library is free software; you can redistribute it and/or * + * modify it under the terms of the GNU Lesser General Public * + * License as published by the Free Software Foundation; either * + * version 2.1 of the License, or (at your option) any later version. * + * * + * This library 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 * + * Lesser General Public License for more details. * + * * + * You should have received a copy of the GNU Lesser General Public * + * License along with this library; If not, see * + * . * + * * + * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ + #ifndef SENSORFILTER_H #define SENSORFILTER_H @@ -54,7 +76,6 @@ private: double lowPassFilterValue(double value); double highPassFilterValue(double value); double averageFilterValue(double value); - }; #endif // SENSORFILTER_H