mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-24 07:25:58 +01:00
32 lines
835 B
C++
32 lines
835 B
C++
|
#pragma once
|
||
|
|
||
|
#include <string>
|
||
|
#include <vector>
|
||
|
|
||
|
enum eManifestType {
|
||
|
MANIFEST_HYPRLOAD,
|
||
|
MANIFEST_HYPRPM
|
||
|
};
|
||
|
|
||
|
class CManifest {
|
||
|
public:
|
||
|
CManifest(const eManifestType type, const std::string& path);
|
||
|
|
||
|
struct SManifestPlugin {
|
||
|
std::string name;
|
||
|
std::string description;
|
||
|
std::string version;
|
||
|
std::vector<std::string> authors;
|
||
|
std::vector<std::string> buildSteps;
|
||
|
std::string output;
|
||
|
};
|
||
|
|
||
|
struct {
|
||
|
std::string name;
|
||
|
std::vector<std::string> authors;
|
||
|
std::vector<std::pair<std::string, std::string>> commitPins;
|
||
|
} m_sRepository;
|
||
|
|
||
|
std::vector<SManifestPlugin> m_vPlugins;
|
||
|
bool m_bGood = true;
|
||
|
};
|