PdbSource.cs 942 B

1234567891011121314151617181920212223242526272829
  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. namespace Microsoft.Cci.Pdb {
  13. internal class PdbSource {
  14. //internal uint index;
  15. internal string name;
  16. internal Guid doctype;
  17. internal Guid language;
  18. internal Guid vendor;
  19. internal PdbSource(/*uint index, */string name, Guid doctype, Guid language, Guid vendor) {
  20. //this.index = index;
  21. this.name = name;
  22. this.doctype = doctype;
  23. this.language = language;
  24. this.vendor = vendor;
  25. }
  26. }
  27. }