/* === This file is part of Calamares - === * * SPDX-FileCopyrightText: 2014 Teo Mrnjavac * SPDX-FileCopyrightText: 2019 Adriaan de Groot * SPDX-License-Identifier: GPL-3.0-or-later * * Calamares is Free Software: see the License-Identifier above. * * */ #ifndef MODULESYSTEM_ACTIONS_H #define MODULESYSTEM_ACTIONS_H namespace Calamares { namespace ModuleSystem { enum class Action : char { Show, Exec }; } // namespace ModuleSystem } // namespace Calamares #endif