Skip to content
Snippets Groups Projects
Commit 65a04ee1 authored by Carsten Gräser's avatar Carsten Gräser
Browse files

Export raw argument and result type.

[[Imported from SVN: r5632]]
parent 1fa3c501
No related branches found
No related tags found
No related merge requests found
...@@ -4,6 +4,8 @@ ...@@ -4,6 +4,8 @@
#define DUNE_FUNCTION_HH #define DUNE_FUNCTION_HH
#include "typetraits.hh"
namespace Dune { namespace Dune {
/** @addtogroup Common /** @addtogroup Common
...@@ -26,6 +28,12 @@ namespace Dune { ...@@ -26,6 +28,12 @@ namespace Dune {
{ {
public: public:
//! Raw type of input variable with removed reference and constness
typedef typename ConstantVolatileTraits<typename TypeTraits< Domain >::ReferredType >::UnqualifiedType DomainType;
//! Raw type of output variable with removed reference and constness
typedef typename ConstantVolatileTraits<typename TypeTraits< Range >::ReferredType >::UnqualifiedType RangeType;
/** /**
* \brief Function evaluation. * \brief Function evaluation.
* *
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment