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:
authorYury Melnichek <melnichek@gmail.com>2011-10-15 17:10:49 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 01:26:02 +0300
commit468dc81fe8c6f40b0775d35f992615494f3aad55 (patch)
treebec9e4a12e091b7a84aad57efed4e1bf96f9ffe1 /indexer/drawing_rules.hpp
parent8b22fac29fa6f3ffa80a19374ed5fe37b0b198ec (diff)
Few no-op renames.
Diffstat (limited to 'indexer/drawing_rules.hpp')
-rw-r--r--indexer/drawing_rules.hpp13
1 files changed, 8 insertions, 5 deletions
diff --git a/indexer/drawing_rules.hpp b/indexer/drawing_rules.hpp
index 8ebc6a821c..ebab95270a 100644
--- a/indexer/drawing_rules.hpp
+++ b/indexer/drawing_rules.hpp
@@ -14,7 +14,7 @@ class FileWriterStream;
namespace drule
{
- typedef map<string, string> attrs_map_t;
+ typedef map<string, string> AttrsMapType;
class BaseRule
{
@@ -120,10 +120,12 @@ namespace drule
int m_currScale;
//@}
- void PushAttributes(string objClass, attrs_map_t & attrs);
+ void PushAttributes(string objClass, AttrsMapType & attrs);
- Key CreateRuleImpl1(string const & name, uint8_t type, string const & clValue, attrs_map_t const & attrs, bool isMask);
- Key CreateRuleImpl2(string const & name, uint8_t type, string const & clName, attrs_map_t const & attrs);
+ Key CreateRuleImpl1(string const & name, uint8_t type, string const & clValue,
+ AttrsMapType const & attrs, bool isMask);
+ Key CreateRuleImpl2(string const & name, uint8_t type, string const & clName,
+ AttrsMapType const & attrs);
public:
~RulesHolder();
@@ -137,7 +139,8 @@ namespace drule
void SetParseFile(char const * fPath, int scale);
- void CreateRules(string const & name, uint8_t type, attrs_map_t const & attrs, vector<Key> & v);
+ void CreateRules(string const & name, uint8_t type,
+ AttrsMapType const & attrs, vector<Key> & v);
BaseRule const * Find(Key const & k) const;