~ubuntu-branches/ubuntu/hoary/monodevelop/hoary

« back to all changes in this revision

Viewing changes to src/Libraries/SharpAssembly/src/SharpAssembly/Metadata/Rows/ClassLayout.cs

  • Committer: Bazaar Package Importer
  • Author(s): Brandon Hale
  • Date: 2004-10-07 11:51:11 UTC
  • Revision ID: james.westby@ubuntu.com-20041007115111-pxcqnwfxyq5mhcx5
Tags: 0.5.1-3
Use dh_netdeps in debian/rules and debian/control

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// ClassLayout.cs
 
2
// Copyright (C) 2003 Mike Krueger
 
3
// 
 
4
// This library is free software; you can redistribute it and/or
 
5
// modify it under the terms of the GNU Lesser General Public
 
6
// License as published by the Free Software Foundation; either
 
7
// version 2.1 of the License, or (at your option) any later version.
 
8
// 
 
9
// This library is distributed in the hope that it will be useful,
 
10
// but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
12
// Lesser General Public License for more details.
 
13
// 
 
14
// You should have received a copy of the GNU Lesser General Public
 
15
// License along with this library; if not, write to the Free Software
 
16
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
17
 
 
18
using System;
 
19
using System.IO;
 
20
 
 
21
namespace MonoDevelop.SharpAssembly.Metadata.Rows {
 
22
        
 
23
        public class ClassLayout : AbstractRow
 
24
        {
 
25
                public static readonly int TABLE_ID = 0x0F;
 
26
                
 
27
                ushort packingSize;
 
28
                uint   classSize;
 
29
                uint   parent; // index into TypeDef table
 
30
                
 
31
                public ushort PackingSize {
 
32
                        get {
 
33
                                return packingSize;
 
34
                        }
 
35
                        set {
 
36
                                packingSize = value;
 
37
                        }
 
38
                }
 
39
                public uint ClassSize {
 
40
                        get {
 
41
                                return classSize;
 
42
                        }
 
43
                        set {
 
44
                                classSize = value;
 
45
                        }
 
46
                }
 
47
                public uint Parent {
 
48
                        get {
 
49
                                return parent;
 
50
                        }
 
51
                        set {
 
52
                                parent = value;
 
53
                        }
 
54
                }
 
55
                
 
56
                
 
57
                public override void LoadRow()
 
58
                {
 
59
                        packingSize = binaryReader.ReadUInt16();
 
60
                        classSize   = binaryReader.ReadUInt32();
 
61
                        parent      = ReadSimpleIndex(TypeDef.TABLE_ID);
 
62
                }
 
63
        }
 
64
}