0.95.0-final
Finite Element Embedded Library and Language in C++
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Groups
Pages
convex.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-04-30
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 __Convex_H
30
#define __Convex_H 1
31
32
namespace
Feel
33
{
34
class
ConvexBase {};
42
template
<u
int
16_type Dim, u
int
16_type Order, u
int
16_type RDim = Dim>
43
class
Convex
:
public
ConvexBase
44
{
45
public
:
46
47
51
static
const
uint16_type nDim = Dim;
52
static
const
uint16_type nOrder = Order;
53
static
const
uint16_type nRealDim = RDim;
54
55
57
61
62
64
68
70
Convex
() {}
71
73
Convex
(
Convex
const
& ) {}
74
76
virtual
~Convex
() {}
77
79
83
85
Convex
&
operator=
(
Convex
const
& o )
86
{
87
if
(
this
!= &o )
88
{
89
}
90
91
return
*
this
;
92
}
94
98
99
101
105
106
108
112
113
115
116
117
118
protected
:
119
120
private
:
121
122
};
123
}
// Feel
124
#endif
/* __Convex_H */
Generated on Fri Oct 25 2013 14:24:06 for Feel++ by
1.8.4