ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/dclient/include/adt/make/map.h
Revision: 1.1
Committed: Sun Oct 17 08:14:46 2010 UTC (13 years, 9 months ago) by sf-pippijn
Content type: text/plain
Branch: MAIN
CVS Tags: HEAD
Log Message:
initial import

File Contents

# Content
1 template<typename... Args>
2 value_map make_map (Args const &...args);
3
4 struct map_t
5 {
6 template<typename... Args>
7 map_t (Args const &...args)
8 : data (make_map (args...))
9 {
10 }
11
12 value_map const data;
13 };