| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- //
- // System.Drawing.Imaging.MetaHeader.cs
- //
- // (C) 2002 Ximian, Inc. http://www.ximian.com
- // Author: Everaldo Canuto
- // eMail: [email protected]
- // Dennis Hayes ([email protected])
- //
- using System;
- namespace System.Drawing.Imaging {
- public sealed class MetaHeader {
- // constructors
- //[MonoTODO]
- public MetaHeader() {
- throw new NotImplementedException ();
- }
- // properties
- //[MonoTODO]
- public short HeaderSize {
- get { throw new NotImplementedException (); }
- set { throw new NotImplementedException (); }
- }
-
- //[MonoTODO]
- public int MaxRecord {
- get { throw new NotImplementedException (); }
- set { throw new NotImplementedException (); }
- }
-
- //[MonoTODO]
- public short NoObjects {
- get { throw new NotImplementedException (); }
- set { throw new NotImplementedException (); }
- }
-
- //[MonoTODO]
- public short NoParameters {
- get { throw new NotImplementedException (); }
- set { throw new NotImplementedException (); }
- }
-
- //[MonoTODO]
- public int Size {
- get { throw new NotImplementedException (); }
- set { throw new NotImplementedException (); }
- }
- //[MonoTODO]
- public short Type {
- get { throw new NotImplementedException (); }
- set { throw new NotImplementedException (); }
- }
- //[MonoTODO]
- public short Version {
- get { throw new NotImplementedException (); }
- set { throw new NotImplementedException (); }
- }
-
- }
- }
|