Update Dark Project controller files to new standardized header comment

This commit is contained in:
Adam Honse 2024-05-15 11:46:59 -05:00
parent 0231a27861
commit 1630d50e72
5 changed files with 55 additions and 36 deletions

View file

@ -1,6 +1,16 @@
/*---------------------------------------------------------*\
| DarkProjectControllerDetect.cpp |
| |
| Detector for Dark Project devices |
| |
| Chris M (DrNo) 08 Apr 2022 |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#include "Detector.h"
#include "RGBController.h"
#include "RGBController_DarkProjectKeyboard.h"
/*---------------------------------------------------------*\

View file

@ -1,11 +1,13 @@
/*-------------------------------------------------------------------*\
| DarkProjectKeyboardController.cpp |
| |
| Driver for DarkProjectKeyboard USB Controller |
| |
| Chris M (DrNo) 8 Apr 2022 |
| |
\*-------------------------------------------------------------------*/
/*---------------------------------------------------------*\
| DarkProjectKeyboardController.cpp |
| |
| Driver for Dark Project keyboard |
| |
| Chris M (DrNo) 08 Apr 2022 |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#include "LogManager.h"
#include "DarkProjectKeyboardController.h"

View file

@ -1,18 +1,20 @@
/*-------------------------------------------------------------------*\
| DarkProjectKeyboardController.h |
| |
| Driver for DarkProjectKeyboard USB Controller |
| |
| Chris M (DrNo) 8 Apr 2022 |
| |
\*-------------------------------------------------------------------*/
/*---------------------------------------------------------*\
| DarkProjectKeyboardController.h |
| |
| Driver for Dark Project keyboard |
| |
| Chris M (DrNo) 08 Apr 2022 |
| |
| 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
#define NA 0xFFFFFFFF
#define HID_MAX_STR 255

View file

@ -1,11 +1,13 @@
/*-------------------------------------------------------------------*\
| RGBController_DarkProjectKeyboard.cpp |
| |
| Driver for DarkProjectKeyboard USB Controller |
| |
| Chris M (DrNo) 8 Apr 2022 |
| |
\*-------------------------------------------------------------------*/
/*---------------------------------------------------------*\
| RGBController_DarkProjectKeyboard.cpp |
| |
| RGBController for Dark Project keyboard |
| |
| Chris M (DrNo) 08 Apr 2022 |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#include "RGBControllerKeyNames.h"
#include "RGBController_DarkProjectKeyboard.h"

View file

@ -1,17 +1,20 @@
/*-------------------------------------------------------------------*\
| RGBController_DarkProjectKeyboard.h |
| |
| Driver for DarkProjectKeyboard USB Controller |
| |
| Chris M (DrNo) 8 Apr 2022 |
| |
\*-------------------------------------------------------------------*/
/*---------------------------------------------------------*\
| RGBController_DarkProjectKeyboard.h |
| |
| RGBController for Dark Project keyboard |
| |
| Chris M (DrNo) 08 Apr 2022 |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#pragma once
#include <vector>
#include "LogManager.h"
#include "RGBController.h"
#include "DarkProjectKeyboardController.h"
#include <vector>
class RGBController_DarkProjectKeyboard : public RGBController
{