Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaria Volvenkova <d.volvenkova@corp.mail.ru>2015-12-16 20:05:14 +0300
committerDaria Volvenkova <d.volvenkova@corp.mail.ru>2015-12-29 16:42:37 +0300
commit3339b9bc1fd14b764c02495b60619421e4b7b29d (patch)
tree519aa94223c0ba986aebd153ded03c37334a2349 /indexer/ftypes_matcher.hpp
parent1b7f5d825774cbb70389219e6f0984842fb9d265 (diff)
Render building parts only in 3d mode.
Diffstat (limited to 'indexer/ftypes_matcher.hpp')
-rw-r--r--indexer/ftypes_matcher.hpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/indexer/ftypes_matcher.hpp b/indexer/ftypes_matcher.hpp
index 9d985fe0d5..b439fdfb9b 100644
--- a/indexer/ftypes_matcher.hpp
+++ b/indexer/ftypes_matcher.hpp
@@ -101,6 +101,14 @@ public:
uint32_t GetMainType() const { return m_types[0]; }
};
+class IsBuildingPartChecker : public BaseChecker
+{
+ virtual bool IsMatched(uint32_t type) const;
+public:
+ IsBuildingPartChecker();
+ static IsBuildingPartChecker const & Instance();
+};
+
class IsBridgeChecker : public BaseChecker
{
virtual bool IsMatched(uint32_t type) const;