use MOONLIGHT symbol
[mcs.git] / tools / pdb2mdb / PdbSource.cs
blobe7b0e34027a12eed60af345d097880377b8ccdc3
1 //-----------------------------------------------------------------------------
2 //
3 // Copyright (C) Microsoft Corporation. All Rights Reserved.
4 //
5 //-----------------------------------------------------------------------------
6 using System;
8 namespace Microsoft.Cci.Pdb {
9 internal class PdbSource {
10 internal uint index;
11 internal string name;
12 internal Guid doctype;
13 internal Guid language;
14 internal Guid vendor;
16 internal PdbSource(uint index, string name, Guid doctype, Guid language, Guid vendor) {
17 this.index = index;
18 this.name = name;
19 this.doctype = doctype;
20 this.language = language;
21 this.vendor = vendor;