Re: Struct Inheritence

2016-02-19 Thread user001 via Digitalmars-d-learn
Yes that's exactly what i needed, thanks!

Struct Inheritence

2016-02-19 Thread user001 via Digitalmars-d-learn
Well struct don't have it, but i would like something like it but only for data, i don't need functions or anything like that just data. struct A { int valueA; } struct B { A a; int valueB; } struct C { B b; int valueC;