PdbLines.cs 743 B

1234567891011121314151617181920212223
  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 PdbLines {
  14. internal PdbSource file;
  15. internal PdbLine[] lines;
  16. internal PdbLines(PdbSource file, uint count) {
  17. this.file = file;
  18. this.lines = new PdbLine[count];
  19. }
  20. }
  21. }