pbdom_builder.sru 683 B

123456789101112131415161718192021222324
  1. $PBExportHeader$pbdom_builder.sru
  2. forward
  3. global type pbdom_builder from nonvisualobject
  4. end type
  5. end forward
  6. global type pbdom_builder from nonvisualobject native "PBDOM.pbx"
  7. public function pbdom_document BuildFromString(string strXMLString)
  8. public function pbdom_document BuildFromDataStore(datastore datastore_ref)
  9. public function pbdom_document BuildFromFile(string strURL)
  10. public function boolean GetParseErrors(ref string strErrorMessageArray[])
  11. end type
  12. global pbdom_builder pbdom_builder
  13. on pbdom_builder.create
  14. call super::create
  15. TriggerEvent( this, "constructor" )
  16. end on
  17. on pbdom_builder.destroy
  18. TriggerEvent( this, "destructor" )
  19. call super::destroy
  20. end on