ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/dclient/include/adt/make/forward.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 #include <utility>
2 #include <vector>
3
4 namespace make
5 {
6 namespace detail
7 {
8 struct value_t;
9 struct array_t;
10 struct map_t;
11
12 typedef std::vector<value_t> value_array;
13 typedef std::pair<value_t, value_t> value_pair;
14 typedef std::vector<value_pair> value_map;
15 }
16 }