From 926c854c2016ff2aaf08c4fdcb1cdd3667524b09 Mon Sep 17 00:00:00 2001 From: NADAL Jean-Baptiste Date: Wed, 28 Mar 2018 22:53:56 +0200 Subject: [PATCH] update copyrights --- src/prog/domod/src/devices/Device.cpp | 8 +++----- src/prog/domod/src/devices/Device.h | 3 +-- src/prog/domod/src/devices/Devices.cpp | 2 +- src/prog/domod/src/devices/Devices.h | 2 +- src/prog/domod/src/devices/Light.cpp | 2 +- src/prog/domod/src/devices/Light.h | 2 +- src/prog/domod/src/devices/LightDevice.cpp | 2 +- src/prog/domod/src/devices/LightDevice.h | 2 +- src/prog/domod/src/devices/Shutter.cpp | 2 +- src/prog/domod/src/devices/Shutter.h | 2 +- src/prog/domod/src/devices/ShutterDevice.cpp | 2 +- src/prog/domod/src/devices/ShutterDevice.h | 2 +- src/prog/domod/src/devices/Sprinkler.cpp | 2 +- src/prog/domod/src/devices/Sprinkler.h | 2 +- src/prog/domod/src/devices/SprinklerDevice.cpp | 2 +- src/prog/domod/src/devices/SprinklerDevice.h | 2 +- src/prog/domod/src/helpers/Strings.cpp | 2 +- src/prog/domod/src/helpers/Strings.h | 2 +- src/prog/domod/src/helpers/Tokenizer.cpp | 2 +- src/prog/domod/src/helpers/Tokenizer.h | 2 +- src/prog/domod/src/main.cpp | 2 +- src/prog/domod/src/models/Devices.cpp | 2 +- src/prog/domod/src/models/Devices.h | 2 +- src/prog/domod/src/timers/Clock.cpp | 2 +- src/prog/domod/src/timers/Clock.h | 2 +- src/prog/domod/src/timers/Event.cpp | 2 +- src/prog/domod/src/timers/Event.h | 2 +- src/prog/domod/src/timers/Timers.cpp | 2 +- src/prog/domod/src/timers/Timers.h | 2 +- src/prog/domod/src/ubus/capabilities.cpp | 2 +- src/prog/domod/src/ubus/capabilities.h | 2 +- src/prog/domod/src/ubus/capabilities_lights.cpp | 2 +- src/prog/domod/src/ubus/capabilities_lights.h | 2 +- src/prog/domod/src/ubus/capabilities_shutters.cpp | 2 +- src/prog/domod/src/ubus/capabilities_shutters.h | 2 +- src/prog/domod/src/ubus/capabilities_sprinklers.cpp | 2 +- src/prog/domod/src/ubus/capabilities_sprinklers.h | 2 +- src/prog/domod/src/ubus/speach_command.cpp | 2 +- src/prog/domod/src/ubus/speach_command.h | 2 +- src/prog/domod/src/ubus/timers.cpp | 2 +- src/prog/domod/src/ubus/timers.h | 2 +- 41 files changed, 43 insertions(+), 46 deletions(-) diff --git a/src/prog/domod/src/devices/Device.cpp b/src/prog/domod/src/devices/Device.cpp index ea095905..176a5ebb 100644 --- a/src/prog/domod/src/devices/Device.cpp +++ b/src/prog/domod/src/devices/Device.cpp @@ -1,7 +1,7 @@ /*! * Device.cpp * - * Copyright (c) 2016, NADAL Jean-Baptiste. All rights reserved. + * Copyright (c) 2016-2018, NADAL Jean-Baptiste. All rights reserved. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public @@ -23,8 +23,6 @@ * */ - - /*------------------------------- INCLUDES ----------------------------------*/ #include @@ -59,7 +57,7 @@ Device::~Device (void) */ int Device::load_from_json (Json::Value anElem) { - fprintf (stderr, "Device::load_from_json...\n"); + fprintf(stderr, "Device::load_from_json...\n"); return 0; } @@ -72,6 +70,6 @@ int Device::load_from_json (Json::Value anElem) Json::Value Device::to_json (bool bDataOnly) const { Json::Value theResult; - fprintf (stderr, "Device::to_json...\n"); + fprintf(stderr, "Device::to_json...\n"); return theResult; } diff --git a/src/prog/domod/src/devices/Device.h b/src/prog/domod/src/devices/Device.h index f8fbf276..4ef5de99 100644 --- a/src/prog/domod/src/devices/Device.h +++ b/src/prog/domod/src/devices/Device.h @@ -1,7 +1,7 @@ /*! * Device.h * - * Copyright (c) 2016, NADAL Jean-Baptiste. All rights reserved. + * Copyright (c) 2016-2018, NADAL Jean-Baptiste. All rights reserved. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public @@ -50,5 +50,4 @@ protected: std::string mspeach_name; }; - #endif /* _DEVICE_H */ diff --git a/src/prog/domod/src/devices/Devices.cpp b/src/prog/domod/src/devices/Devices.cpp index 0456084e..9a2fff3f 100644 --- a/src/prog/domod/src/devices/Devices.cpp +++ b/src/prog/domod/src/devices/Devices.cpp @@ -1,7 +1,7 @@ /*! * Devices.cpp * - * Copyright (c) 2016, NADAL Jean-Baptiste. All rights reserved. + * Copyright (c) 2016-2018, NADAL Jean-Baptiste. All rights reserved. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public diff --git a/src/prog/domod/src/devices/Devices.h b/src/prog/domod/src/devices/Devices.h index e3c6741a..22a0917b 100644 --- a/src/prog/domod/src/devices/Devices.h +++ b/src/prog/domod/src/devices/Devices.h @@ -1,7 +1,7 @@ /*! * Devices.h * - * Copyright (c) 2016, NADAL Jean-Baptiste. All rights reserved. + * Copyright (c) 2016-2018, NADAL Jean-Baptiste. All rights reserved. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public diff --git a/src/prog/domod/src/devices/Light.cpp b/src/prog/domod/src/devices/Light.cpp index 059dba27..a914abfe 100644 --- a/src/prog/domod/src/devices/Light.cpp +++ b/src/prog/domod/src/devices/Light.cpp @@ -1,7 +1,7 @@ /*! * Light.cpp * - * Copyright (c) 2016, NADAL Jean-Baptiste. All rights reserved. + * Copyright (c) 2016-2018, NADAL Jean-Baptiste. All rights reserved. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public diff --git a/src/prog/domod/src/devices/Light.h b/src/prog/domod/src/devices/Light.h index 010b2030..660ac857 100644 --- a/src/prog/domod/src/devices/Light.h +++ b/src/prog/domod/src/devices/Light.h @@ -1,7 +1,7 @@ /*! * Light.h * - * Copyright (c) 2016, NADAL Jean-Baptiste. All rights reserved. + * Copyright (c) 2016-2018, NADAL Jean-Baptiste. All rights reserved. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public diff --git a/src/prog/domod/src/devices/LightDevice.cpp b/src/prog/domod/src/devices/LightDevice.cpp index edaf2584..0a17c17f 100644 --- a/src/prog/domod/src/devices/LightDevice.cpp +++ b/src/prog/domod/src/devices/LightDevice.cpp @@ -1,7 +1,7 @@ /*! * LightDevice.cpp * - * Copyright (c) 2016, NADAL Jean-Baptiste. All rights reserved. + * Copyright (c) 2016-2018, NADAL Jean-Baptiste. All rights reserved. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public diff --git a/src/prog/domod/src/devices/LightDevice.h b/src/prog/domod/src/devices/LightDevice.h index d0584c55..b939a27d 100644 --- a/src/prog/domod/src/devices/LightDevice.h +++ b/src/prog/domod/src/devices/LightDevice.h @@ -1,7 +1,7 @@ /*! * LightDevice.h * - * Copyright (c) 2016, NADAL Jean-Baptiste. All rights reserved. + * Copyright (c) 2016-2018, NADAL Jean-Baptiste. All rights reserved. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public diff --git a/src/prog/domod/src/devices/Shutter.cpp b/src/prog/domod/src/devices/Shutter.cpp index 5219978a..ef275061 100644 --- a/src/prog/domod/src/devices/Shutter.cpp +++ b/src/prog/domod/src/devices/Shutter.cpp @@ -1,7 +1,7 @@ /*! * Shutter.cpp * - * Copyright (c) 2016, NADAL Jean-Baptiste. All rights reserved. + * Copyright (c) 2016-2018, NADAL Jean-Baptiste. All rights reserved. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public diff --git a/src/prog/domod/src/devices/Shutter.h b/src/prog/domod/src/devices/Shutter.h index dc32313a..adf6b382 100644 --- a/src/prog/domod/src/devices/Shutter.h +++ b/src/prog/domod/src/devices/Shutter.h @@ -1,7 +1,7 @@ /*! * Shutter.h * - * Copyright (c) 2016, NADAL Jean-Baptiste. All rights reserved. + * Copyright (c) 2016-2018, NADAL Jean-Baptiste. All rights reserved. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public diff --git a/src/prog/domod/src/devices/ShutterDevice.cpp b/src/prog/domod/src/devices/ShutterDevice.cpp index fe5800d0..8f9a675a 100644 --- a/src/prog/domod/src/devices/ShutterDevice.cpp +++ b/src/prog/domod/src/devices/ShutterDevice.cpp @@ -1,7 +1,7 @@ /*! * ShutterDevice.cpp * - * Copyright (c) 2016, NADAL Jean-Baptiste. All rights reserved. + * Copyright (c) 2016-2018, NADAL Jean-Baptiste. All rights reserved. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public diff --git a/src/prog/domod/src/devices/ShutterDevice.h b/src/prog/domod/src/devices/ShutterDevice.h index e9af98d8..861d2b32 100644 --- a/src/prog/domod/src/devices/ShutterDevice.h +++ b/src/prog/domod/src/devices/ShutterDevice.h @@ -1,7 +1,7 @@ /*! * ShutterDevice.h * - * Copyright (c) 2016, NADAL Jean-Baptiste. All rights reserved. + * Copyright (c) 2016-2018, NADAL Jean-Baptiste. All rights reserved. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public diff --git a/src/prog/domod/src/devices/Sprinkler.cpp b/src/prog/domod/src/devices/Sprinkler.cpp index e77ad713..edbe8649 100644 --- a/src/prog/domod/src/devices/Sprinkler.cpp +++ b/src/prog/domod/src/devices/Sprinkler.cpp @@ -1,7 +1,7 @@ /*! * Sprinkler.cpp * - * Copyright (c) 2016, NADAL Jean-Baptiste. All rights reserved. + * Copyright (c) 2016-2018, NADAL Jean-Baptiste. All rights reserved. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public diff --git a/src/prog/domod/src/devices/Sprinkler.h b/src/prog/domod/src/devices/Sprinkler.h index 1de2ce44..71c0f5a3 100644 --- a/src/prog/domod/src/devices/Sprinkler.h +++ b/src/prog/domod/src/devices/Sprinkler.h @@ -1,7 +1,7 @@ /*! * Sprinkler.h * - * Copyright (c) 2016, NADAL Jean-Baptiste. All rights reserved. + * Copyright (c) 2016-2018, NADAL Jean-Baptiste. All rights reserved. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public diff --git a/src/prog/domod/src/devices/SprinklerDevice.cpp b/src/prog/domod/src/devices/SprinklerDevice.cpp index a8723e1d..adf19976 100644 --- a/src/prog/domod/src/devices/SprinklerDevice.cpp +++ b/src/prog/domod/src/devices/SprinklerDevice.cpp @@ -1,7 +1,7 @@ /*! * SprinklerDevice.cpp * - * Copyright (c) 2016, NADAL Jean-Baptiste. All rights reserved. + * Copyright (c) 2016-2018, NADAL Jean-Baptiste. All rights reserved. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public diff --git a/src/prog/domod/src/devices/SprinklerDevice.h b/src/prog/domod/src/devices/SprinklerDevice.h index 53166a34..1f908b6a 100644 --- a/src/prog/domod/src/devices/SprinklerDevice.h +++ b/src/prog/domod/src/devices/SprinklerDevice.h @@ -1,7 +1,7 @@ /*! * SprinklerDevice.h * - * Copyright (c) 2016, NADAL Jean-Baptiste. All rights reserved. + * Copyright (c) 2016-2018, NADAL Jean-Baptiste. All rights reserved. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public diff --git a/src/prog/domod/src/helpers/Strings.cpp b/src/prog/domod/src/helpers/Strings.cpp index 81cf7bbf..44ab8fda 100644 --- a/src/prog/domod/src/helpers/Strings.cpp +++ b/src/prog/domod/src/helpers/Strings.cpp @@ -1,7 +1,7 @@ /*! * strings_helpers.cpp * - * Copyright (c) 2015, NADAL Jean-Baptiste. All rights reserved. + * Copyright (c) 2015-2018, NADAL Jean-Baptiste. All rights reserved. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public diff --git a/src/prog/domod/src/helpers/Strings.h b/src/prog/domod/src/helpers/Strings.h index 92f9c0fb..a94ded0e 100644 --- a/src/prog/domod/src/helpers/Strings.h +++ b/src/prog/domod/src/helpers/Strings.h @@ -1,7 +1,7 @@ /*! * strings_helpers.cpp * - * Copyright (c) 2015, NADAL Jean-Baptiste. All rights reserved. + * Copyright (c) 2015-2018, NADAL Jean-Baptiste. All rights reserved. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public diff --git a/src/prog/domod/src/helpers/Tokenizer.cpp b/src/prog/domod/src/helpers/Tokenizer.cpp index dfa7463c..758ba6db 100644 --- a/src/prog/domod/src/helpers/Tokenizer.cpp +++ b/src/prog/domod/src/helpers/Tokenizer.cpp @@ -1,7 +1,7 @@ /*! * Tokenizer.cpp * - * Copyright (c) 2015, NADAL Jean-Baptiste. All rights reserved. + * Copyright (c) 2015-2018, NADAL Jean-Baptiste. All rights reserved. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public diff --git a/src/prog/domod/src/helpers/Tokenizer.h b/src/prog/domod/src/helpers/Tokenizer.h index cd9e1e12..6388edee 100644 --- a/src/prog/domod/src/helpers/Tokenizer.h +++ b/src/prog/domod/src/helpers/Tokenizer.h @@ -1,7 +1,7 @@ /*! * Tokenizer.h * - * Copyright (c) 2015, NADAL Jean-Baptiste. All rights reserved. + * Copyright (c) 2015-2018, NADAL Jean-Baptiste. All rights reserved. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public diff --git a/src/prog/domod/src/main.cpp b/src/prog/domod/src/main.cpp index ba264f6e..3d674462 100644 --- a/src/prog/domod/src/main.cpp +++ b/src/prog/domod/src/main.cpp @@ -1,7 +1,7 @@ /*! * main.cpp * - * Copyright (c) 2015, NADAL Jean-Baptiste. All rights reserved. + * Copyright (c) 2015-2018, NADAL Jean-Baptiste. All rights reserved. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public diff --git a/src/prog/domod/src/models/Devices.cpp b/src/prog/domod/src/models/Devices.cpp index cb510eed..18c321cd 100644 --- a/src/prog/domod/src/models/Devices.cpp +++ b/src/prog/domod/src/models/Devices.cpp @@ -1,7 +1,7 @@ /*! * Devices.cpp * - * Copyright (c) 2015, NADAL Jean-Baptiste. All rights reserved. + * Copyright (c) 2015-2018, NADAL Jean-Baptiste. All rights reserved. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public diff --git a/src/prog/domod/src/models/Devices.h b/src/prog/domod/src/models/Devices.h index 8ed2fb56..cb0385b7 100644 --- a/src/prog/domod/src/models/Devices.h +++ b/src/prog/domod/src/models/Devices.h @@ -1,7 +1,7 @@ /*! * Devices.h * - * Copyright (c) 2015, NADAL Jean-Baptiste. All rights reserved. + * Copyright (c) 2015-2018, NADAL Jean-Baptiste. All rights reserved. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public diff --git a/src/prog/domod/src/timers/Clock.cpp b/src/prog/domod/src/timers/Clock.cpp index ba815bb7..f916a8e3 100644 --- a/src/prog/domod/src/timers/Clock.cpp +++ b/src/prog/domod/src/timers/Clock.cpp @@ -1,7 +1,7 @@ /*! * Clock.cpp * - * Copyright (c) 2016, NADAL Jean-Baptiste. All rights reserved. + * Copyright (c) 2016-2018, NADAL Jean-Baptiste. All rights reserved. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public diff --git a/src/prog/domod/src/timers/Clock.h b/src/prog/domod/src/timers/Clock.h index 0e0fbf92..824ffb18 100644 --- a/src/prog/domod/src/timers/Clock.h +++ b/src/prog/domod/src/timers/Clock.h @@ -1,7 +1,7 @@ /*! * Clock.h * - * Copyright (c) 2016, NADAL Jean-Baptiste. All rights reserved. + * Copyright (c) 2016-2018, NADAL Jean-Baptiste. All rights reserved. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public diff --git a/src/prog/domod/src/timers/Event.cpp b/src/prog/domod/src/timers/Event.cpp index b7b34483..d85b0584 100644 --- a/src/prog/domod/src/timers/Event.cpp +++ b/src/prog/domod/src/timers/Event.cpp @@ -1,7 +1,7 @@ /*! * Event.cpp * - * Copyright (c) 2016, NADAL Jean-Baptiste. All rights reserved. + * Copyright (c) 2016-2018, NADAL Jean-Baptiste. All rights reserved. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public diff --git a/src/prog/domod/src/timers/Event.h b/src/prog/domod/src/timers/Event.h index 0e060588..e850974e 100644 --- a/src/prog/domod/src/timers/Event.h +++ b/src/prog/domod/src/timers/Event.h @@ -1,7 +1,7 @@ /*! * Event.h * - * Copyright (c) 2016, NADAL Jean-Baptiste. All rights reserved. + * Copyright (c) 2016-2018, NADAL Jean-Baptiste. All rights reserved. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public diff --git a/src/prog/domod/src/timers/Timers.cpp b/src/prog/domod/src/timers/Timers.cpp index 250ccd65..72cd0970 100644 --- a/src/prog/domod/src/timers/Timers.cpp +++ b/src/prog/domod/src/timers/Timers.cpp @@ -1,7 +1,7 @@ /*! * Timers.cpp * - * Copyright (c) 2016, NADAL Jean-Baptiste. All rights reserved. + * Copyright (c) 2016-2018, NADAL Jean-Baptiste. All rights reserved. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public diff --git a/src/prog/domod/src/timers/Timers.h b/src/prog/domod/src/timers/Timers.h index 147feb90..395d4425 100644 --- a/src/prog/domod/src/timers/Timers.h +++ b/src/prog/domod/src/timers/Timers.h @@ -1,7 +1,7 @@ /*! * Timers.h * - * Copyright (c) 2016, NADAL Jean-Baptiste. All rights reserved. + * Copyright (c) 2016-2018, NADAL Jean-Baptiste. All rights reserved. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public diff --git a/src/prog/domod/src/ubus/capabilities.cpp b/src/prog/domod/src/ubus/capabilities.cpp index ab6e6045..2dc4f50a 100644 --- a/src/prog/domod/src/ubus/capabilities.cpp +++ b/src/prog/domod/src/ubus/capabilities.cpp @@ -1,7 +1,7 @@ /*! * capabilities.cpp * - * Copyright (c) 2015, NADAL Jean-Baptiste. All rights reserved. + * Copyright (c) 2015-2018, NADAL Jean-Baptiste. All rights reserved. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public diff --git a/src/prog/domod/src/ubus/capabilities.h b/src/prog/domod/src/ubus/capabilities.h index 6438775c..4b9f0f22 100644 --- a/src/prog/domod/src/ubus/capabilities.h +++ b/src/prog/domod/src/ubus/capabilities.h @@ -1,7 +1,7 @@ /*! * capabilities.h * - * Copyright (c) 2015, NADAL Jean-Baptiste. All rights reserved. + * Copyright (c) 2015-2018, NADAL Jean-Baptiste. All rights reserved. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public diff --git a/src/prog/domod/src/ubus/capabilities_lights.cpp b/src/prog/domod/src/ubus/capabilities_lights.cpp index 1e77aa99..1b43ede6 100644 --- a/src/prog/domod/src/ubus/capabilities_lights.cpp +++ b/src/prog/domod/src/ubus/capabilities_lights.cpp @@ -1,7 +1,7 @@ /*! * capabilities_lights.cpp * - * Copyright (c) 2015, NADAL Jean-Baptiste. All rights reserved. + * Copyright (c) 2015-2018, NADAL Jean-Baptiste. All rights reserved. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public diff --git a/src/prog/domod/src/ubus/capabilities_lights.h b/src/prog/domod/src/ubus/capabilities_lights.h index 25e91757..51b290dd 100644 --- a/src/prog/domod/src/ubus/capabilities_lights.h +++ b/src/prog/domod/src/ubus/capabilities_lights.h @@ -1,7 +1,7 @@ /*! * capabilities_lights.h * - * Copyright (c) 2015, NADAL Jean-Baptiste. All rights reserved. + * Copyright (c) 2015-2018, NADAL Jean-Baptiste. All rights reserved. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public diff --git a/src/prog/domod/src/ubus/capabilities_shutters.cpp b/src/prog/domod/src/ubus/capabilities_shutters.cpp index 174b6f5c..545ea7f1 100644 --- a/src/prog/domod/src/ubus/capabilities_shutters.cpp +++ b/src/prog/domod/src/ubus/capabilities_shutters.cpp @@ -1,7 +1,7 @@ /*! * capabilities_shutters.cpp * - * Copyright (c) 2015, NADAL Jean-Baptiste. All rights reserved. + * Copyright (c) 2015-2018, NADAL Jean-Baptiste. All rights reserved. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public diff --git a/src/prog/domod/src/ubus/capabilities_shutters.h b/src/prog/domod/src/ubus/capabilities_shutters.h index c0a054bf..be6d08ad 100644 --- a/src/prog/domod/src/ubus/capabilities_shutters.h +++ b/src/prog/domod/src/ubus/capabilities_shutters.h @@ -1,7 +1,7 @@ /*! * capabilities_shutters.h * - * Copyright (c) 2015, NADAL Jean-Baptiste. All rights reserved. + * Copyright (c) 2015-2018, NADAL Jean-Baptiste. All rights reserved. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public diff --git a/src/prog/domod/src/ubus/capabilities_sprinklers.cpp b/src/prog/domod/src/ubus/capabilities_sprinklers.cpp index 8c6c103b..8380d109 100644 --- a/src/prog/domod/src/ubus/capabilities_sprinklers.cpp +++ b/src/prog/domod/src/ubus/capabilities_sprinklers.cpp @@ -1,7 +1,7 @@ /*! * capabilities_sprinklers.cpp * - * Copyright (c) 2015, NADAL Jean-Baptiste. All rights reserved. + * Copyright (c) 2015-2018, NADAL Jean-Baptiste. All rights reserved. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public diff --git a/src/prog/domod/src/ubus/capabilities_sprinklers.h b/src/prog/domod/src/ubus/capabilities_sprinklers.h index 838c8280..36fd26da 100644 --- a/src/prog/domod/src/ubus/capabilities_sprinklers.h +++ b/src/prog/domod/src/ubus/capabilities_sprinklers.h @@ -1,7 +1,7 @@ /*! * capabilities_sprinklers.h * - * Copyright (c) 2015, NADAL Jean-Baptiste. All rights reserved. + * Copyright (c) 2015-2018, NADAL Jean-Baptiste. All rights reserved. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public diff --git a/src/prog/domod/src/ubus/speach_command.cpp b/src/prog/domod/src/ubus/speach_command.cpp index b6d3a66c..cc73f152 100644 --- a/src/prog/domod/src/ubus/speach_command.cpp +++ b/src/prog/domod/src/ubus/speach_command.cpp @@ -1,7 +1,7 @@ /*! * speach_command.cpp * - * Copyright (c) 2015, NADAL Jean-Baptiste. All rights reserved. + * Copyright (c) 2015-2018, NADAL Jean-Baptiste. All rights reserved. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public diff --git a/src/prog/domod/src/ubus/speach_command.h b/src/prog/domod/src/ubus/speach_command.h index 4f1264af..b100a505 100644 --- a/src/prog/domod/src/ubus/speach_command.h +++ b/src/prog/domod/src/ubus/speach_command.h @@ -1,7 +1,7 @@ /*! * speach_command.h * - * Copyright (c) 2015, NADAL Jean-Baptiste. All rights reserved. + * Copyright (c) 2015-2018, NADAL Jean-Baptiste. All rights reserved. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public diff --git a/src/prog/domod/src/ubus/timers.cpp b/src/prog/domod/src/ubus/timers.cpp index 8079043e..a4079616 100644 --- a/src/prog/domod/src/ubus/timers.cpp +++ b/src/prog/domod/src/ubus/timers.cpp @@ -1,7 +1,7 @@ /*! * TimersModel.cpp * - * Copyright (c) 2016, NADAL Jean-Baptiste. All rights reserved. + * Copyright (c) 2016-2018, NADAL Jean-Baptiste. All rights reserved. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public diff --git a/src/prog/domod/src/ubus/timers.h b/src/prog/domod/src/ubus/timers.h index e58e6e1c..5e1825f1 100644 --- a/src/prog/domod/src/ubus/timers.h +++ b/src/prog/domod/src/ubus/timers.h @@ -1,7 +1,7 @@ /*! * timers.h * - * Copyright (c) 2016, NADAL Jean-Baptiste. All rights reserved. + * Copyright (c) 2016-2018, NADAL Jean-Baptiste. All rights reserved. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public