17 lines
364 B
C++
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 = "";
|
|
};
|
|
}
|