unit uIEditorAlbaranesClientePreview; interface uses uEditorPreview; type IEditorAlbaranesClientePreview = interface(IEditorPreview) ['{F58BF987-28EB-485A-B953-55BDEEBE2C91}'] procedure SetVerPrecios(const Value: Boolean); function GetVerPrecios: Boolean; property VerPrecios : Boolean read GetVerPrecios write SetVerPrecios; function GetVerRef: Boolean; procedure SetVerRef(const Value: Boolean); property VerRef : Boolean read GetVerRef write SetVerRef; end; implementation end.