Hyprland/src/desktop/rule/matchEngine/WorkspaceMatchEngine.hpp

18 lines
364 B
C++
Raw Normal View History

#pragma once
#include "MatchEngine.hpp"
2025-12-20 12:52:54 -05:00
#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 = "";
};
2025-12-20 12:52:54 -05:00
}