Update Linux LED controller files to new standardized header comment

This commit is contained in:
Adam Honse 2024-05-25 18:23:42 -05:00
parent baa6c1a2e4
commit 523b01054a
5 changed files with 57 additions and 20 deletions

View file

@ -1,13 +1,22 @@
/*---------------------------------------------------------*\
| LinuxLEDControllerDetect_Linux.cpp |
| |
| Detector for Linux sysfs LEDs |
| |
| Adam Honse (calcprogrammer1@gmail.com) 25 Sep 2020 |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#include <stdio.h>
#include <stdlib.h>
#include <string>
#include <vector>
#include "Detector.h"
#include "RGBController.h"
#include "RGBController_LinuxLED_Linux.h"
#include "SettingsManager.h"
#include <vector>
#include <stdio.h>
#include <stdlib.h>
#include <string>
/******************************************************************************************\
* *

View file

@ -1,3 +1,14 @@
/*---------------------------------------------------------*\
| LinuxLEDController_Linux.cpp |
| |
| Driver for Linux sysfs LEDs |
| |
| Adam Honse (calcprogrammer1@gmail.com) 25 Sep 2020 |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#include "LinuxLEDController_Linux.h"
LinuxLEDController::LinuxLEDController()

View file

@ -1,3 +1,13 @@
/*---------------------------------------------------------*\
| LinuxLEDController_Linux.h |
| |
| Driver for Linux sysfs LEDs |
| |
| Adam Honse (calcprogrammer1@gmail.com) 25 Sep 2020 |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#pragma once

View file

@ -1,10 +1,13 @@
/*-----------------------------------------*\
| RGBController_LinuxLED.cpp |
| |
| Generic RGB Interface for Linux LED |
| |
| Adam Honse (CalcProgrammer1) 9/25/2020 |
\*-----------------------------------------*/
/*---------------------------------------------------------*\
| RGBController_LinuxLED.cpp |
| |
| RGBController for Linux sysfs LEDs |
| |
| Adam Honse (calcprogrammer1@gmail.com) 25 Sep 2020 |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#include "RGBController_LinuxLED_Linux.h"

View file

@ -1,12 +1,16 @@
/*-----------------------------------------*\
| RGBController_LinuxLED.h |
| |
| Generic RGB Interface for Linux LED |
| |
| Adam Honse (CalcProgrammer1) 9/25/2020 |
\*-----------------------------------------*/
/*---------------------------------------------------------*\
| RGBController_LinuxLED.h |
| |
| RGBController for Linux sysfs LEDs |
| |
| Adam Honse (calcprogrammer1@gmail.com) 25 Sep 2020 |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#pragma once
#include "RGBController.h"
#include "LinuxLEDController_Linux.h"