|
|
От: |
Abyx
|
|
| Дата: | 10.03.14 16:10 | ||
| Оценка: |
-1
|
||
W>struct Base
W>{
W>Base(int){}
W>};
W>struct Der:virtual Base
W>{
W>Der(int):Base(0){}
W>};
W>struct Derived:Der, Base
W>{
W>//Derived(int):Base(0),Der(0),Base(1){}
W>};
W>