Reference documentation for deal.II version 8.1.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Modules Pages
function_map.h
1 // ---------------------------------------------------------------------
2 // @f$Id: function_map.h 30036 2013-07-18 16:55:32Z maier @f$
3 //
4 // Copyright (C) 2001 - 2013 by the deal.II authors
5 //
6 // This file is part of the deal.II library.
7 //
8 // The deal.II library is free software; you can use it, redistribute
9 // it, and/or modify it under the terms of the GNU Lesser General
10 // Public License as published by the Free Software Foundation; either
11 // version 2.1 of the License, or (at your option) any later version.
12 // The full text of the license can be found in the file LICENSE at
13 // the top level of the deal.II distribution.
14 //
15 // ---------------------------------------------------------------------
16 
17 #ifndef __deal2__function_map_h
18 #define __deal2__function_map_h
19 
20 #include <deal.II/base/config.h>
21 #include <map>
22 
24 
25 template <int spacedim> class Function;
26 
27 
28 
44 template<int dim>
45 struct FunctionMap
46 {
56  typedef std::map<types::boundary_id, const Function<dim>*> type;
57 };
58 
59 DEAL_II_NAMESPACE_CLOSE
60 
61 #endif
std::map< types::boundary_id, const Function< dim > * > type
Definition: function_map.h:56