// // System.Drawing.Imaging.MetaHeader.cs // // (C) 2002 Ximian, Inc. http://www.ximian.com // Author: Everaldo Canuto // eMail: everaldo.canuto@bol.com.br // Dennis Hayes (dennish@raytek.com) // 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 (); } } } }