Update Razer common controller files to new standardized header comment

This commit is contained in:
Adam Honse 2024-06-07 11:33:03 -05:00
parent 7c1cb2e4e0
commit 34ce3b928b
3 changed files with 35 additions and 18 deletions

View file

@ -1,3 +1,16 @@
/*---------------------------------------------------------*\
| RazerControllerDetect.cpp |
| |
| Detector for Razer devices |
| |
| Adam Honse (CalcProgrammer1) 22 Jan 2021 |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#include <unordered_set>
#include <hidapi/hidapi.h>
#include "Detector.h"
#include "LogManager.h"
#include "RazerController.h"
@ -9,10 +22,6 @@
#include "RGBController_RazerAddressable.h"
#include "RGBController_RazerKraken.h"
#include <hidapi/hidapi.h>
#include <unordered_set>
/******************************************************************************************\
* *
* DetectRazerControllers *

View file

@ -1,10 +1,13 @@
/*-----------------------------------------*\
| RazerDevices.cpp |
| |
| Razer device table static data |
| |
| Adam Honse (CalcProgrammer1) 9/4/2021 |
\*-----------------------------------------*/
/*---------------------------------------------------------*\
| RazerDevices.cpp |
| |
| Device list for Razer devices |
| |
| Adam Honse (CalcProgrammer1) 04 Sep 2021 |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#include "RazerDevices.h"

View file

@ -1,10 +1,15 @@
/*-----------------------------------------*\
| RazerDevices.h |
| |
| Razer device table definitions |
| |
| Adam Honse (CalcProgrammer1) 9/4/2021 |
\*-----------------------------------------*/
/*---------------------------------------------------------*\
| RazerDevices.h |
| |
| Device list for Razer devices |
| |
| Adam Honse (CalcProgrammer1) 04 Sep 2021 |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#pragma once
#include <string>
#include "RGBController.h"