/usr/include/dune/localfunctions/common/localfiniteelementtraits.hh is in libdune-localfunctions-dev 2.2.1-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | // -*- tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
// vi: set ts=4 sw=4 et sts=4:
#ifndef DUNE_LOCALFINITEELEMENTTRAITS_HH
#define DUNE_LOCALFINITEELEMENTTRAITS_HH
namespace Dune {
//! traits helper struct
template<class LB, class LC, class LI>
struct LocalFiniteElementTraits
{
/** \todo Please doc me !
*/
typedef LB LocalBasisType;
/** \todo Please doc me !
*/
typedef LC LocalCoefficientsType;
/** \todo Please doc me !
*/
typedef LI LocalInterpolationType;
};
}
#endif
|