Re: [fpc-pascal] Empty record inside another record ?

2008-03-01 Thread Skybuck Flying
There is another major drawback to your supposedly better method: Object inheritance forces all fields to be accessable from the root: SomeRoot.SomeField := ...; While nesting has nice grouping: SomeRoot.SomeHeader.SomeOtherHeader.SomeField := 5; Bye, Skybuck. - Original Message -

Re: [fpc-pascal] Empty record inside another record ?

2008-03-01 Thread Daniƫl Mantione
Op Fri, 29 Feb 2008, schreef Skybuck Flying: There is another major drawback to your supposedly better method: Object inheritance forces all fields to be accessable from the root: SomeRoot.SomeField := ...; While nesting has nice grouping: SomeRoot.SomeHeader.SomeOtherHeader.SomeField :=