summaryrefslogtreecommitdiffstats
path: root/xbmc/application/AppEnvironment.h
diff options
context:
space:
mode:
Diffstat (limited to 'xbmc/application/AppEnvironment.h')
-rw-r--r--xbmc/application/AppEnvironment.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/xbmc/application/AppEnvironment.h b/xbmc/application/AppEnvironment.h
new file mode 100644
index 0000000..d301866
--- /dev/null
+++ b/xbmc/application/AppEnvironment.h
@@ -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.
+ */
+
+#pragma once
+
+#include <memory>
+
+class CAppParams;
+
+class CAppEnvironment
+{
+public:
+ static void SetUp(const std::shared_ptr<CAppParams>& appParams);
+ static void TearDown();
+};