Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/cecil.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJb Evain <jb@evain.net>2017-03-17 21:17:03 +0300
committerJb Evain <jb@evain.net>2017-03-17 21:17:03 +0300
commit7c8e1ad42527080fabf8832aba03e184bf965b29 (patch)
treece86690cc919a290469e31438216ab93988a9523 /symbols/mdb/Mono.Cecil.Mdb/MdbReader.cs
parenta55c070b17fae1392e7710cbd081b9be8d9a6775 (diff)
Make symbols readers and writers provide their counter part
Diffstat (limited to 'symbols/mdb/Mono.Cecil.Mdb/MdbReader.cs')
-rw-r--r--symbols/mdb/Mono.Cecil.Mdb/MdbReader.cs5
1 files changed, 5 insertions, 0 deletions
diff --git a/symbols/mdb/Mono.Cecil.Mdb/MdbReader.cs b/symbols/mdb/Mono.Cecil.Mdb/MdbReader.cs
index 43d92a6..e9782d6 100644
--- a/symbols/mdb/Mono.Cecil.Mdb/MdbReader.cs
+++ b/symbols/mdb/Mono.Cecil.Mdb/MdbReader.cs
@@ -58,6 +58,11 @@ namespace Mono.Cecil.Mdb {
this.documents = new Dictionary<string, Document> ();
}
+ public ISymbolWriterProvider GetWriterProvider ()
+ {
+ return new MdbWriterProvider ();
+ }
+
public bool ProcessDebugHeader (ImageDebugHeader header)
{
return symbol_file.Guid == module.Mvid;