Initial upload of HyprArch releng configuration
This commit is contained in:
63
airootfs/usr/include/libcalamares/partition/KPMManager.h
Normal file
63
airootfs/usr/include/libcalamares/partition/KPMManager.h
Normal file
@@ -0,0 +1,63 @@
|
||||
/* === This file is part of Calamares - <https://calamares.io> ===
|
||||
*
|
||||
* SPDX-FileCopyrightText: 2019 Adriaan de Groot <groot@kde.org>
|
||||
* SPDX-License-Identifier: GPL-3.0-or-later
|
||||
*
|
||||
* Calamares is Free Software: see the License-Identifier above.
|
||||
*
|
||||
*
|
||||
*/
|
||||
|
||||
/*
|
||||
* NOTE: this functionality is only available when Calamares is compiled
|
||||
* with KPMcore support.
|
||||
*/
|
||||
|
||||
#ifndef PARTITION_KPMMANAGER_H
|
||||
#define PARTITION_KPMMANAGER_H
|
||||
|
||||
#include "DllMacro.h"
|
||||
|
||||
#include <memory>
|
||||
|
||||
class CoreBackend;
|
||||
|
||||
namespace Calamares
|
||||
{
|
||||
namespace Partition
|
||||
{
|
||||
/// @brief Handle to KPMCore
|
||||
class InternalManager;
|
||||
|
||||
/** @brief KPMCore loader and cleanup
|
||||
*
|
||||
* A Calamares plugin that uses KPMCore should hold an object of
|
||||
* this class; its only responsibility is to load KPMCore
|
||||
* and to cleanly unload it on destruction (with KPMCore 4,
|
||||
* also to shutdown the privileged helper application).
|
||||
*
|
||||
* It loads the default plugin ("parted" with KPMCore 3, "sfdisk"
|
||||
* with KPMCore 4), but this can be overridden by setting the
|
||||
* environment variable KPMCORE_BACKEND. Setting it to
|
||||
* "dummy" will load the dummy plugin instead.
|
||||
*/
|
||||
class DLLEXPORT KPMManager
|
||||
{
|
||||
public:
|
||||
KPMManager();
|
||||
~KPMManager();
|
||||
|
||||
/// @brief Is KPMCore loaded correctly?
|
||||
operator bool() const;
|
||||
|
||||
/// @brief Gets the KPMCore backend (e.g. CoreBackendManager::self()->backend() )
|
||||
CoreBackend* backend() const;
|
||||
|
||||
private:
|
||||
std::shared_ptr< InternalManager > m_d;
|
||||
};
|
||||
|
||||
} // namespace Partition
|
||||
} // namespace Calamares
|
||||
|
||||
#endif // PARTITION_KPMMANAGER_H
|
||||
Reference in New Issue
Block a user