summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.76.0/tests/expected/cpp/30104-templ_class.h
blob: 802f7e27d0ad582bd3956b65658d75c06a33a47d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
template<typename T, template<typename> class SpecialClass>
class Example
{
  // Copy constructor with other variants of Example
  template<template<typename> class OtherSpecialClass>
  Example(const Example<T, OtherSpecialClass>& other)
  {
    // do something useful here
  }

  /** The normal member var based on the template arguments */
  SpecialClass<T> memberVar;

};