Interface needed by the compiler.
[mono.git] / mcs / class / corlib / System.Diagnostics.SymbolStore / ISymbolDocumentWriter.cs
1 using System;
2
3 namespace System.Diagnostics.SymbolStore {
4         public interface ISymbolDocumentWriter {
5                 void SetCheckSum (Guid algorithmId, byte[] checkSum);
6                 
7                 void SetSource (byte[] source);
8            
9         }
10 }