inheritance_01.queue.bmx 229 B

1234567891011121314151617
  1. SuperStrict
  2. Import Brl.StandardIO
  3. Type MyTypeQueue
  4. Field _content:MyType[]
  5. Method Insert:int(obj:MyType)
  6. _content :+ [obj]
  7. print "added"
  8. End Method
  9. End Type
  10. Type MyType
  11. Field myOthervar:int
  12. End Type