mirror of
https://github.com/CalcProgrammer1/OpenRGB.git
synced 2025-12-24 07:47:49 -05:00
21 lines
688 B
C++
21 lines
688 B
C++
/*---------------------------------------------------------*\
|
|
| AutoStart.cpp |
|
|
| |
|
|
| Autostart common implementation |
|
|
| |
|
|
| This file is part of the OpenRGB project |
|
|
| SPDX-License-Identifier: GPL-2.0-or-later |
|
|
\*---------------------------------------------------------*/
|
|
|
|
#include "AutoStart.h"
|
|
|
|
std::string AutoStartInterface::GetAutoStartFile()
|
|
{
|
|
return(autostart_file);
|
|
}
|
|
|
|
std::string AutoStartInterface::GetAutoStartName()
|
|
{
|
|
return(autostart_name);
|
|
}
|