]> rtime.felk.cvut.cz Git - l4.git/blob - kernel/fiasco/tool/preprocess/test/verify/template_base_class.h
Update
[l4.git] / kernel / fiasco / tool / preprocess / test / verify / template_base_class.h
1 // AUTOMATICALLY GENERATED -- DO NOT EDIT!         -*- c++ -*-
2
3 #ifndef template_base_class_h
4 #define template_base_class_h
5
6 //
7 // INTERFACE definition follows 
8 //
9
10 #line 2 "template_base_class.cpp"
11
12 template<typename T>
13 struct Base {};
14 #line 5 "template_base_class.cpp"
15
16 template<typename X>
17 struct Derived : Base<int>
18 {
19 public:  
20 #line 13 "template_base_class.cpp"
21   Derived();
22 };
23
24 //
25 // IMPLEMENTATION of function templates
26 //
27
28
29 #line 11 "template_base_class.cpp"
30
31  
32 template<typename T> Derived<T>::Derived() : Base<int>()
33 {}
34
35 #endif // template_base_class_h