mirror of
https://github.com/hyprwm/Hyprland
synced 2026-01-06 07:30:09 +01:00
Reworks the window rule syntax completely --------- Co-authored-by: Mihai Fufezan <mihai@fufexan.net>
23 lines
370 B
C++
23 lines
370 B
C++
#include "MatchEngine.hpp"
|
|
|
|
using namespace Desktop::Rule;
|
|
|
|
bool IMatchEngine::match(const std::string&) {
|
|
return false;
|
|
}
|
|
|
|
bool IMatchEngine::match(bool) {
|
|
return false;
|
|
}
|
|
|
|
bool IMatchEngine::match(int) {
|
|
return false;
|
|
}
|
|
|
|
bool IMatchEngine::match(PHLWORKSPACE) {
|
|
return false;
|
|
}
|
|
|
|
bool IMatchEngine::match(const CTagKeeper& keeper) {
|
|
return false;
|
|
}
|