source: NonGTP/Boost/boost/wave/util/symbol_table.hpp @ 857

Revision 857, 1.4 KB checked in by igarcia, 18 years ago (diff)
Line 
1/*=============================================================================
2    Boost.Wave: A Standard compliant C++ preprocessor library
3
4    http://www.boost.org/
5
6    Copyright (c) 2001-2005 Hartmut Kaiser. Distributed under the Boost
7    Software License, Version 1.0. (See accompanying file
8    LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
9=============================================================================*/
10
11#if !defined(SYMBOL_TABLE_HPP_32B0F7C6_3DD6_4113_95A5_E16516C6F45A_INCLUDED)
12#define SYMBOL_TABLE_HPP_32B0F7C6_3DD6_4113_95A5_E16516C6F45A_INCLUDED
13
14#include <map>
15
16///////////////////////////////////////////////////////////////////////////////
17namespace boost {
18namespace wave {
19namespace util {
20
21///////////////////////////////////////////////////////////////////////////////
22//
23//  The symbol_table class is used for the storage of defined macros.
24//
25///////////////////////////////////////////////////////////////////////////////
26
27template <typename StringT, typename MacroDefT>
28struct symbol_table
29:   public std::map<StringT, boost::shared_ptr<MacroDefT> >
30{
31    symbol_table(long uid_)
32    {}
33};
34
35///////////////////////////////////////////////////////////////////////////////
36}   // namespace util
37}   // namespace wave
38}   // namespace boost
39
40#endif // !defined(SYMBOL_TABLE_HPP_32B0F7C6_3DD6_4113_95A5_E16516C6F45A_INCLUDED)
Note: See TracBrowser for help on using the repository browser.