Update Lian Li GAII Trinity controller files to new standardized header comment

This commit is contained in:
Adam Honse 2024-05-25 13:05:11 -05:00
parent de17f6b7cb
commit be6e890402
4 changed files with 46 additions and 35 deletions

View file

@ -1,16 +1,19 @@
/*-----------------------------------------*\
| LianLiGAIITrinityController.cpp |
| |
| Controller for Lian Li GAII Trinity |
| |
| Michael Losert 2023-10-27 |
\*-----------------------------------------*/
/*---------------------------------------------------------*\
| LianLiGAIITrinityController.cpp |
| |
| Driver for Lian Li GAII Trinity |
| |
| Michael Losert 27 Oct 2023 |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#include "LianLiGAIITrinityController.h"
#include <algorithm>
#include <cstring>
#include <iomanip>
#include <sstream>
#include "LianLiGAIITrinityController.h"
LianLiGAIITrinityController::LianLiGAIITrinityController(hid_device* dev_handle)
{

View file

@ -1,17 +1,20 @@
/*-----------------------------------------*\
| LianLiGAIITrinityController.h |
| |
| Controller for Lian Li GAII Trinity |
| |
| Michael Losert 2023-10-27 |
\*-----------------------------------------*/
#include "RGBController.h"
#include "hidapi/hidapi.h"
#include <vector>
/*---------------------------------------------------------*\
| LianLiGAIITrinityController.h |
| |
| Driver for Lian Li GAII Trinity |
| |
| Michael Losert 27 Oct 2023 |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#pragma once
#include <vector>
#include <hidapi/hidapi.h>
#include "RGBController.h"
/*----------------------------------------------------------------------------*\
| Definitions related to LED configuration. |
\*----------------------------------------------------------------------------*/

View file

@ -1,14 +1,16 @@
/*-----------------------------------------*\
| RGBController_LianLiGAIITrinity.cpp |
| |
| Lian Li GAII Trinity AIO LED Driver |
| |
| Michael Losert 2023-10-27 |
\*-----------------------------------------*/
#include "RGBController_LianLiGAIITrinity.h"
/*---------------------------------------------------------*\
| RGBController_LianLiGAIITrinity.cpp |
| |
| RGBController for Lian Li GAII Trinity |
| |
| Michael Losert 27 Oct 2023 |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#include <string>
#include "RGBController_LianLiGAIITrinity.h"
/**------------------------------------------------------------------*\
@name Lian Li GAII Trinity

View file

@ -1,10 +1,13 @@
/*-----------------------------------------*\
| RGBController_LianLiGAIITrinity.h |
| |
| Lian Li GAII Trinity AIO LED Driver |
| |
| Michael Losert 2023-10-27 |
\*-----------------------------------------*/
/*---------------------------------------------------------*\
| RGBController_LianLiGAIITrinity.h |
| |
| RGBController for Lian Li GAII Trinity |
| |
| Michael Losert 27 Oct 2023 |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#pragma once