alaCarte Maps
Renderer for OpenStreetMap tiles
selectors.hpp
Go to the documentation of this file.
1 
21 #pragma once
22 #ifndef SELECTORS_HPP
23 #define SELECTORS_HPP
24 /*
25  * =====================================================================================
26  *
27  * Filename: selectors.hpp
28  *
29  * Description: This header file servers as a shortcut to include all existing selectors
30  *
31  * =====================================================================================
32  */
33 
34 #include "settings.hpp"
35 
36 #include "selector.hpp"
37 
38 
39 #include "line_selector.hpp"
40 #include "area_selector.hpp"
41 
42 #include "childnodes_selector.hpp"
43 #include "childways_selector.hpp"
44 
45 #include "hastag_selector.hpp"
46 #include "hasnottag_selector.hpp"
47 
48 #include "tagequals_selector.hpp"
49 #include "tagunequals_selector.hpp"
50 #include "tagmatches_selector.hpp"
51 
52 #include "taglarger_selector.hpp"
54 #include "tagsmaller_selector.hpp"
56 
57 #include "apply_selector.hpp"
58 
59 #endif