Parameter/property inheritance
pacman
Posts: 327
If I had an object {lets call it Fred} that is of type BigObject, but BigObject uses another object {FullDuplexSerial} how can I make the Start/stop/etc parameters of FullDuplexSerial inherited by bigObject?
Rather than have my own 'start' procedure in BigObject (that just calls the start parameter of FullDuplexSerial and directly passes the inputs), I could then just call "Fred.Start (12,13,0,9600)" for example.
Thanks in advance
Paul
Rather than have my own 'start' procedure in BigObject (that just calls the start parameter of FullDuplexSerial and directly passes the inputs), I could then just call "Fred.Start (12,13,0,9600)" for example.
Thanks in advance
Paul
Comments
-Phil