Skip to content
Snippets Groups Projects
Commit 0269f380 authored by Christian Engwer's avatar Christian Engwer
Browse files

hide implementations from doxygen, doxygen fails to parse these

[[Imported from SVN: r1119]]
parent 07a406af
No related branches found
No related tags found
No related merge requests found
......@@ -886,6 +886,8 @@ namespace Dune
};
#ifndef DOXYGEN
template<class V>
inline const void* CommPolicy<V>::getAddress(const V& v, int index)
{
......@@ -910,20 +912,18 @@ namespace Dune
return v[index].getsize();
}
template<class T>
inline const typename CopyGatherScatter<T>::IndexedType& CopyGatherScatter<T>::gather(const T & vec, std::size_t i)
{
return vec[i];
}
template<class T>
inline void CopyGatherScatter<T>::scatter(T& vec, const IndexedType& v, std::size_t i)
{
vec[i]=v;
}
template<typename T>
DatatypeCommunicator<T>::DatatypeCommunicator()
: remoteIndices_(0), created_(false)
......@@ -1491,6 +1491,8 @@ namespace Dune
}
#endif // DOXYGEN
/** @} */
}
......
......@@ -698,6 +698,8 @@ namespace Dune
return a.global_>=b;
}
#ifndef DOXYGEN
template<class TG, class TL>
IndexPair<TG,TL>::IndexPair(const TG& global, const TL& local)
: global_(global), local_(local){}
......@@ -1076,5 +1078,8 @@ namespace Dune
{
return indexSet_.seqNo();
}
#endif // DOXYGEN
}
#endif
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