Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
test_cppyy_backend.h
Go to the documentation of this file.
1
2namespace Outer
3{
4 class Inner
5 {
6 public:
8 void fn1(int arg);
9 };
10
11 template<typename T, int U>
13 {
14 public:
16 };
17
18 /**
19 * Simple specialisation.
20 */
21 template<>
22 class Template<Inner, 1>
23 {
24 public:
26 };
27
28 /**
29 * Complex specialisation.
30 */
31 template<>
32 class Template<Template<Inner, 2>, 1>
33 {
34 public:
36 };
37
38 /**
39 * Simply templated function.
40 */
41 template<typename T, int U>
43
44 /**
45 * Less-simply templated function.
46 */
47 template<typename T, int U>
49};
void fn1(int arg)
void doit(Template< T, U > arg)
Simply templated function.