alaCarte Maps
Renderer for OpenStreetMap tiles
hasnottag_selector.hpp
Go to the documentation of this file.
1 
21 #pragma once
22 #ifndef HASNOTTAG_SELECTOR_HPP
23 #define HASNOTTAG_SELECTOR_HPP
24 /*
25  * =====================================================================================
26  *
27  * Filename: hasnottag_selector.hpp
28  *
29  * Description: [!tag] - selector for all objects that have this tag unset or set to no/false
30  *
31  * =====================================================================================
32  */
33 
34 #include "settings.hpp"
35 
37 
38 class HasNotTagSelector : public Selector {
39 public:
40  HasNotTagSelector(const shared_ptr<Rule>& rule, const shared_ptr<Selector>& next, const string& tag);
41  virtual void matchNode(NodeId nodeID, const shared_ptr<TileIdentifier>& ti, RenderAttributes* attributes) const;
42  virtual void matchWay(WayId wayID, const shared_ptr<TileIdentifier>& ti, RenderAttributes* attributes) const;
43  virtual void matchRelation(RelId relID, const shared_ptr<TileIdentifier>& ti, RenderAttributes* attributes) const;
44 
45 private:
47 };
48 
49 #endif
virtual void matchRelation(RelId relID, const shared_ptr< TileIdentifier > &ti, RenderAttributes *attributes) const
A RenderAttributes object contains mappings from NodeIDs and WayIDs to Style objects which define how...
const CachedString tag
virtual void matchNode(NodeId nodeID, const shared_ptr< TileIdentifier > &ti, RenderAttributes *attributes) const
virtual void matchWay(WayId wayID, const shared_ptr< TileIdentifier > &ti, RenderAttributes *attributes) const
const weak_ptr< Rule > rule
Definition: selector.hpp:53
const shared_ptr< Selector > next
Definition: selector.hpp:54
HasNotTagSelector(const shared_ptr< Rule > &rule, const shared_ptr< Selector > &next, const string &tag)
This file is part of alaCarte.
Represents a string which is cached into an internal cache.