Logo  0.95.0-final
Finite Element Embedded Library and Language in C++
Feel++ Feel++ on Github Feel++ community
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
systemexplicit.hpp
Go to the documentation of this file.
1 /* -*- mode: c++; coding: utf-8; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; show-trailing-whitespace: t -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4
2 
3  This file is part of the Feel library
4 
5  Author(s): Christophe Prud'homme <christophe.prudhomme@feelpp.org>
6  Date: 2009-01-04
7 
8  Copyright (C) 2009 Université Joseph Fourier (Grenoble I)
9 
10  This library is free software; you can redistribute it and/or
11  modify it under the terms of the GNU Lesser General Public
12  License as published by the Free Software Foundation; either
13  version 3.0 of the License, or (at your option) any later version.
14 
15  This library is distributed in the hope that it will be useful,
16  but WITHOUT ANY WARRANTY; without even the implied warranty of
17  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18  Lesser General Public License for more details.
19 
20  You should have received a copy of the GNU Lesser General Public
21  License along with this library; if not, write to the Free Software
22  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
23 */
29 #ifndef __SystemExplicit_H
30 #define __SystemExplicit_H 1
31 
33 
34 namespace Feel
35 {
43 template<typename SpaceType>
44 class SystemExplicit : public System<SpaceType>
45 {
46  typedef System<SpaceType> super;
47 public:
48 
49 
53 
54  static const uint16_type Dim = super::Dim;
55 
57 
61 
63 
64  typedef typename super::value_type value_type;
65  typedef typename super::functionspace_type functionspace_type;
66  typedef typename super::functionspace_type functionspace_ptrtype;
67  typedef typename super::element_type element_type;
69 
73 
74  SystemExplicit( functionspace_ptrtype Xh, po::variables_map const& vm ) : super( Xh, vm ) {}
75  SystemExplicit( SystemExplicit const & se ) : super( se ) {}
76  ~SystemExplicit() {}
77 
79 
83 
84 
86 
90 
91 
93 
97 
98 
100 
104 
105 
107 
108 
109 
110 protected:
111 
112 private:
113 
114 };
115 } // Feel
116 #endif /* __SystemExplicit_H */

Generated on Sun Oct 20 2013 08:25:05 for Feel++ by doxygen 1.8.4