forked from aseprite/aseprite
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmap.h
More file actions
62 lines (48 loc) · 1.34 KB
/
map.h
File metadata and controls
62 lines (48 loc) · 1.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
// Aseprite CSS Library
// Copyright (C) 2013 David Capello
//
// This file is released under the terms of the MIT license.
// Read LICENSE.txt for more information.
#ifndef CSS_MAP_H_INCLUDED
#define CSS_MAP_H_INCLUDED
#pragma once
#include <map>
#include <string>
namespace css {
template<typename T>
class Map {
public:
typedef std::map<std::string, T> map;
typedef typename map::iterator iterator;
typedef typename map::const_iterator const_iterator;
Map() : m_default() { }
iterator begin() { return m_map.begin(); }
iterator end() { return m_map.end(); }
const_iterator begin() const { return m_map.begin(); }
const_iterator end() const { return m_map.end(); }
const T& operator[](const std::string& name) const {
const_iterator it = m_map.find(name);
if (it != m_map.end())
return it->second;
else
return m_default;
}
T& operator[](const std::string& name) {
iterator it = m_map.find(name);
if (it != m_map.end())
return it->second;
else
return m_map[name] = T();
}
void add(const std::string& name, T value) {
m_map[name] = value;
}
bool exists(const std::string& name) const {
return (m_map.find(name) != m_map.end());
}
private:
map m_map;
T m_default;
};
} // namespace css
#endif