diff options
Diffstat (limited to 'xbmc/application/AppParams.cpp')
-rw-r--r-- | xbmc/application/AppParams.cpp | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/xbmc/application/AppParams.cpp b/xbmc/application/AppParams.cpp new file mode 100644 index 0000000..97c09e3 --- /dev/null +++ b/xbmc/application/AppParams.cpp @@ -0,0 +1,20 @@ +/* + * Copyright (C) 2005-2022 Team Kodi + * This file is part of Kodi - https://kodi.tv + * + * SPDX-License-Identifier: GPL-2.0-or-later + * See LICENSES/README.md for more information. + */ + +#include "AppParams.h" + +#include "FileItem.h" + +CAppParams::CAppParams() : m_playlist(std::make_unique<CFileItemList>()) +{ +} + +void CAppParams::SetRawArgs(std::vector<std::string> args) +{ + m_rawArgs = std::move(args); +} |