You've already forked linux-packaging-mono
Imported Upstream version 6.8.0.73
Former-commit-id: d18deab1b47cfd3ad8cba82b3f37d00eec2170af
This commit is contained in:
parent
bceda29824
commit
73ee7591e8
@@ -13,16 +13,26 @@ namespace Mono.Cecil.Pdb
|
||||
{
|
||||
internal class SymDocumentWriter
|
||||
{
|
||||
readonly ISymUnmanagedDocumentWriter m_unmanagedDocumentWriter;
|
||||
readonly ISymUnmanagedDocumentWriter writer;
|
||||
|
||||
public SymDocumentWriter (ISymUnmanagedDocumentWriter unmanagedDocumentWriter)
|
||||
public ISymUnmanagedDocumentWriter Writer
|
||||
{
|
||||
m_unmanagedDocumentWriter = unmanagedDocumentWriter;
|
||||
get { return writer; }
|
||||
}
|
||||
|
||||
public ISymUnmanagedDocumentWriter GetUnmanaged ()
|
||||
public SymDocumentWriter (ISymUnmanagedDocumentWriter writer)
|
||||
{
|
||||
return m_unmanagedDocumentWriter;
|
||||
this.writer = writer;
|
||||
}
|
||||
|
||||
public void SetSource (byte [] source)
|
||||
{
|
||||
writer.SetSource ((uint) source.Length, source);
|
||||
}
|
||||
|
||||
public void SetCheckSum (Guid hashAlgo, byte [] checkSum)
|
||||
{
|
||||
writer.SetCheckSum (hashAlgo, (uint) checkSum.Length, checkSum);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user