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

[doc,parameterizedobject] fix docstring for copy-constructor-define

parent 139910ee
No related branches found
No related tags found
2 merge requests!212Fix link to build system doc,!3Feature/parameterizedobjectfactory
......@@ -11,8 +11,6 @@
namespace Dune {
/**
* @brief A factory class for parameterized objects.
*
......@@ -130,10 +128,11 @@ class ParameterizedObjectFactory<TypeT(Args...), KeyT>
* create will hand out a copy to this.
*
* @tparam Impl The type of objects to create.
* @tparam T Type convertible of creator function. This must be callable with Args... .
*
* @param key The key associated with this type.
* @param f Function for creation of objects of type Impl
* @param t reference object, "create" will call the copy-constructor
*
* note, this does not work fundamental types
*/
template<class Impl,
typename std::enable_if<std::is_convertible<Impl, Type>::value, int>::type = 0>
......
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