LRDE Tiger Compiler  1.34a $Id: 7fef12e1f5fa43449d667a0eec1d837c40fc1202 $
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
scoped-map.hh
Go to the documentation of this file.
1 
13 #ifndef MISC_SCOPED_MAP_HH
14 # define MISC_SCOPED_MAP_HH
15 
16 #include <list>
17 #include <map>
18 
19 namespace misc
20 {
21  template <typename Key, typename Data>
22  class scoped_map
23  {
24  // FIXME: Some code was deleted here (This needs to be done at TC-3).
25  };
26 
27  template <typename Key, typename Data>
28  std::ostream&
29  operator<<(std::ostream& ostr, const scoped_map<Key, Data>& tbl);
30 
31 } // namespace misc
32 
33 # include <misc/scoped-map.hxx>
34 
35 #endif // !MISC_SCOPED_MAP_HH