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 28 29 30 31 32
|
/**
* @brief a class with a template parameter
*
* @tparam T this is the template parameter
*/
template <typename T>
class templateclass
{
public:
/// default constructor
templateclass() {}
/**
* @brief constructor with template argument
*
* @param m the argument
*/
templateclass(T const & m) : member(m) {}
/**
* @brief member accepting template argument and returning template argument
*
* @param t argument of type T
* @return returns value of type T
*/
T method(T const & t);
private:
/// a member with templated type
T member;
};
|