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

Heap.cs « Mono.Cecil.Metadata - github.com/mono/cecil.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6874d7963ebef9ed0963aca4bb54124f559720f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
//
// Author:
//   Jb Evain (jbevain@gmail.com)
//
// Copyright (c) 2008 - 2015 Jb Evain
// Copyright (c) 2008 - 2011 Novell, Inc.
//
// Licensed under the MIT/X11 license.
//

namespace Mono.Cecil.Metadata {

	abstract class Heap {

		public int IndexSize;

		readonly internal byte [] data;

		protected Heap (byte [] data)
		{
			this.data = data;
		}
	}
}