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:
authorExMix <rahuba.youri@mapswithme.com>2014-07-30 15:44:09 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 02:22:49 +0300
commit64b07cb6dd0d2fe5685d89a73a4f51dafbdb4e11 (patch)
treedd2cabb4af67306c44bf52ed72e840191bdf6592 /drape/attribute_provider.cpp
parent7a3c714e48697e44f2be66d27e90981b59b06959 (diff)
[drape] move drape into dp namespace
Diffstat (limited to 'drape/attribute_provider.cpp')
-rw-r--r--drape/attribute_provider.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/drape/attribute_provider.cpp b/drape/attribute_provider.cpp
index a832ed50f1..3efc106de0 100644
--- a/drape/attribute_provider.cpp
+++ b/drape/attribute_provider.cpp
@@ -12,6 +12,9 @@
#define INIT_STREAM(x) UNUSED_VALUE((x))
#endif
+namespace dp
+{
+
AttributeProvider::AttributeProvider(uint8_t streamCount, uint16_t vertexCount)
: m_vertexCount(vertexCount)
{
@@ -93,3 +96,5 @@ void AttributeProvider::InitCheckStream(uint8_t streamIndex)
m_checkInfo[streamIndex] = true;
}
#endif
+
+}