This repository has been archived on 2023-08-12. You can view files and clone it. You cannot open issues or pull requests or push a commit.
2017-10-11 09:48:27 -04:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include <boost/variant/static_visitor.hpp>
|
|
|
|
|
|
|
|
|
|
#include "mstch/mstch.hpp"
|
|
|
|
|
|
2017-10-17 10:29:56 -04:00
|
|
|
namespace mstch
|
|
|
|
|
{
|
2017-10-11 09:48:27 -04:00
|
|
|
|
2017-10-17 10:29:56 -04:00
|
|
|
class has_token : public boost::static_visitor<bool>
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
has_token(const std::string &token) : m_token(token) {}
|
2017-10-11 09:48:27 -04:00
|
|
|
|
2017-10-17 10:29:56 -04:00
|
|
|
template <class T> bool operator()(const T &) const { return m_token == "."; }
|
2017-10-11 09:48:27 -04:00
|
|
|
|
2017-10-17 10:29:56 -04:00
|
|
|
bool operator()(const map &map) const { return map.count(m_token) == 1; }
|
2017-10-11 09:48:27 -04:00
|
|
|
|
2017-10-17 10:29:56 -04:00
|
|
|
bool operator()(const std::shared_ptr<object> &object) const { return object->has(m_token); }
|
2017-10-11 09:48:27 -04:00
|
|
|
|
2017-10-17 10:29:56 -04:00
|
|
|
private:
|
|
|
|
|
const std::string &m_token;
|
2017-10-11 09:48:27 -04:00
|
|
|
};
|
|
|
|
|
}
|