/packages/cocoaint/src/webkit/DOMProcessingInstruction.inc

https://github.com/slibre/freepascal · Pascal · 53 lines · 10 code · 14 blank · 29 comment · 0 complexity · c7cf19b97369ed0f14186363e42be920 MD5 · raw file

  1. { Parsed from Webkit.framework DOMProcessingInstruction.h }
  2. {$ifdef TYPES}
  3. {$ifndef DOMPROCESSINGINSTRUCTION_PAS_T}
  4. {$define DOMPROCESSINGINSTRUCTION_PAS_T}
  5. {$endif}
  6. {$endif}
  7. {$ifdef RECORDS}
  8. {$ifndef DOMPROCESSINGINSTRUCTION_PAS_R}
  9. {$define DOMPROCESSINGINSTRUCTION_PAS_R}
  10. {$endif}
  11. {$endif}
  12. {$ifdef FUNCTIONS}
  13. {$ifndef DOMPROCESSINGINSTRUCTION_PAS_F}
  14. {$define DOMPROCESSINGINSTRUCTION_PAS_F}
  15. {$endif}
  16. {$endif}
  17. {$ifdef EXTERNAL_SYMBOLS}
  18. {$ifndef DOMPROCESSINGINSTRUCTION_PAS_S}
  19. {$define DOMPROCESSINGINSTRUCTION_PAS_S}
  20. {$endif}
  21. {$endif}
  22. {$ifdef FORWARD}
  23. DOMProcessingInstruction = objcclass;
  24. DOMProcessingInstructionPointer = ^DOMProcessingInstruction;
  25. DOMProcessingInstructionPtr = DOMProcessingInstructionPointer;
  26. {$endif}
  27. {$ifdef CLASSES}
  28. {$ifndef DOMPROCESSINGINSTRUCTION_PAS_C}
  29. {$define DOMPROCESSINGINSTRUCTION_PAS_C}
  30. { DOMProcessingInstruction }
  31. DOMProcessingInstruction = objcclass external (DOMNode)
  32. public
  33. function target: NSString; message 'target';
  34. procedure setData (newValue: NSString); message 'setData:';
  35. function data: NSString; message 'data';
  36. function sheet: DOMStyleSheet; message 'sheet';
  37. end;
  38. {$endif}
  39. {$endif}