Hyprland/src/desktop/rule/matchEngine/WorkspaceMatchEngine.hpp
2025-12-20 17:52:54 +00:00

17 lines
364 B
C++

#pragma once
#include "MatchEngine.hpp"
#include <string>
namespace Desktop::Rule {
class CWorkspaceMatchEngine : public IMatchEngine {
public:
CWorkspaceMatchEngine(const std::string&);
virtual ~CWorkspaceMatchEngine() = default;
virtual bool match(PHLWORKSPACE ws);
private:
std::string m_value = "";
};
}