2003-07-21 Andreas Nahr <ClassDevelopment@A-SoftTech.com>
[mono.git] / mcs / class / System.Drawing / System.Drawing.Imaging / MetaHeader.cs
1 //\r
2 // System.Drawing.Imaging.MetaHeader.cs\r
3 //\r
4 // (C) 2002 Ximian, Inc.  http://www.ximian.com\r
5 // Author: Everaldo Canuto\r
6 // eMail: everaldo.canuto@bol.com.br\r
7 // Dennis Hayes (dennish@raytek.com)\r
8 //\r
9 using System;\r
10 \r
11 namespace System.Drawing.Imaging {\r
12 \r
13         public sealed class MetaHeader {\r
14 \r
15                 // constructors\r
16                 [MonoTODO]\r
17                 public MetaHeader() {\r
18                         throw new NotImplementedException ();\r
19                 }\r
20 \r
21                 // properties\r
22                 [MonoTODO]\r
23                 public short HeaderSize {\r
24                         get { throw new NotImplementedException (); }\r
25                         set { throw new NotImplementedException (); }\r
26                 }\r
27                 \r
28                 [MonoTODO]\r
29                 public int MaxRecord {\r
30                         get { throw new NotImplementedException (); }\r
31                         set { throw new NotImplementedException (); }\r
32                 }\r
33                 \r
34                 [MonoTODO]\r
35                 public short NoObjects {\r
36                         get { throw new NotImplementedException (); }\r
37                         set { throw new NotImplementedException (); }\r
38                 }\r
39                 \r
40                 [MonoTODO]\r
41                 public short NoParameters {\r
42                         get { throw new NotImplementedException (); }\r
43                         set { throw new NotImplementedException (); }\r
44                 }\r
45                 \r
46                 [MonoTODO]\r
47                 public int Size {\r
48                         get { throw new NotImplementedException (); }\r
49                         set { throw new NotImplementedException (); }\r
50                 }\r
51 \r
52                 [MonoTODO]\r
53                 public short Type {\r
54                         get { throw new NotImplementedException (); }\r
55                         set { throw new NotImplementedException (); }\r
56                 }\r
57 \r
58                 [MonoTODO]\r
59                 public short Version {\r
60                         get { throw new NotImplementedException (); }\r
61                         set { throw new NotImplementedException (); }\r
62                 }\r
63                 \r
64         }\r
65 \r
66 }\r