1 //-----------------------------------------------------------------------------
2 //
3 // Copyright (c) Microsoft. All rights reserved.
4 // This code is licensed under the Microsoft Public License.
5 // THIS CODE IS PROVIDED *AS IS* WITHOUT WARRANTY OF
6 // ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING ANY
7 // IMPLIED WARRANTIES OF FITNESS FOR A PARTICULAR
8 // PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT.
9 //
10 //-----------------------------------------------------------------------------
11 using System;
12 
13 namespace Microsoft.Cci.Pdb {
14   internal class PdbSource {
15     //internal uint index;
16     internal string name;
17     internal Guid doctype;
18     internal Guid language;
19     internal Guid vendor;
20 
PdbSource( string name, Guid doctype, Guid language, Guid vendor)21     internal PdbSource(/*uint index, */string name, Guid doctype, Guid language, Guid vendor) {
22       //this.index = index;
23       this.name = name;
24       this.doctype = doctype;
25       this.language = language;
26       this.vendor = vendor;
27     }
28   }
29 }
30