MITK-IGT
IGT Extension of MITK
Loading...
Searching...
No Matches
templ.cpp
Go to the documentation of this file.
1
3template<class T,int i=100> class Test
4{
5 public:
6 Test();
7 Test(const Test &);
8};
9
11template<> class Test<void *,200>
12{
13 public:
14 Test();
15};
16
18template<class T> class Test<T *> : public Test<void *,200>
19{
20 public:
21 Test();
22};
23
25template<class T,int i> Test<T,i>::Test() {}
26
28template<class T,int i> Test<T,i>::Test(const Test &t) {}
29
31template<class T> Test<T *>::Test() {}
32
35
This is a test class.
Definition class.h:4
Test()
Definition templ.cpp:25