Update Gigabyte Aorus case controller files to new standardized header comment

This commit is contained in:
Adam Honse 2024-05-19 17:36:17 -05:00
parent c8bafd10aa
commit e22267fbeb
5 changed files with 53 additions and 38 deletions

View file

@ -1,14 +1,15 @@
/*------------------------------------------*\
| GigabyteAorusPCCaseController.cpp |
| |
| Driver for Gigabyte Aorus PC Case |
| lighting controller |
| |
| Denis Nazarov (nenderus) 2/10/2024 |
\*------------------------------------------*/
/*---------------------------------------------------------*\
| GigabyteAorusPCCaseController.cpp |
| |
| Driver for Gigabyte Aorus case |
| |
| Denis Nazarov (nenderus) 10 Feb 2024 |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#include <cstring>
#include "GigabyteAorusPCCaseController.h"
GigabyteAorusPCCaseController::GigabyteAorusPCCaseController(hid_device *dev_handle, const char *path)

View file

@ -1,19 +1,20 @@
/*------------------------------------------*\
| GigabyteAorusPCCaseController.h |
| |
| Definitions and types for Gigabyte Aorus |
| PC Case lighting controller |
| |
| Denis Nazarov (nenderus) 2/10/2024 |
\*------------------------------------------*/
/*---------------------------------------------------------*\
| GigabyteAorusPCCaseController.h |
| |
| Driver for Gigabyte Aorus case |
| |
| Denis Nazarov (nenderus) 10 Feb 2024 |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#pragma once
#include <string>
#include <hidapi/hidapi.h>
#include "RGBController.h"
#pragma once
struct aorus_pc_case_mode_config
{
RGBColor color;

View file

@ -1,8 +1,17 @@
#include <hidapi/hidapi.h>
/*---------------------------------------------------------*\
| GigabyteAorusPCCaseControllerDetect.cpp |
| |
| Detector for Gigabyte Aorus case |
| |
| Denis Nazarov (nenderus) 10 Feb 2024 |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#include <hidapi/hidapi.h>
#include "Detector.h"
#include "RGBController.h"
#include "GigabyteAorusPCCaseController.h"
#include "RGBController_GigabyteAorusPCCase.h"

View file

@ -1,11 +1,13 @@
/*------------------------------------------*\
| RGBController_GigabyteAorusPCCase.cpp |
| |
| Generic RGB Interface for for Gigabyte |
| Aorus PC Case driver |
| |
| Denis Nazarov (nenderus) 2/10/2024 |
\*------------------------------------------*/
/*---------------------------------------------------------*\
| RGBController_GigabyteAorusPCCase.cpp |
| |
| RGBController for Gigabyte Aorus case |
| |
| Denis Nazarov (nenderus) 10 Feb 2024 |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#include "RGBController_GigabyteAorusPCCase.h"

View file

@ -1,11 +1,13 @@
/*------------------------------------------*\
| RGBController_GigabyteAorusPCCase.h |
| |
| Generic RGB Interface for for Gigabyte |
| Aorus PC Case driver |
| |
| Denis Nazarov (nenderus) 2/10/2024 |
\*------------------------------------------*/
/*---------------------------------------------------------*\
| RGBController_GigabyteAorusPCCase.h |
| |
| RGBController for Gigabyte Aorus case |
| |
| Denis Nazarov (nenderus) 10 Feb 2024 |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#pragma once