You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
550 B
C++
32 lines
550 B
C++
#pragma once
|
|
|
|
#include <boost/variant/static_visitor.hpp>
|
|
|
|
#include "mstch/mstch.hpp"
|
|
|
|
namespace mstch {
|
|
|
|
class has_token: public boost::static_visitor<bool> {
|
|
public:
|
|
has_token(const std::string& token): m_token(token) {
|
|
}
|
|
|
|
template<class T>
|
|
bool operator()(const T&) const {
|
|
return m_token == ".";
|
|
}
|
|
|
|
bool operator()(const map& map) const {
|
|
return map.count(m_token) == 1;
|
|
}
|
|
|
|
bool operator()(const std::shared_ptr<object>& object) const {
|
|
return object->has(m_token);
|
|
}
|
|
|
|
private:
|
|
const std::string& m_token;
|
|
};
|
|
|
|
}
|