| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- //
- // System.Drawing.Imaging.ImageFormat.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 ImageFormat {
- // constructors
- //[MonoTODO]
- public ImageFormat(Guid guid) {
- throw new NotImplementedException ();
- }
-
- // methods
- //[MonoTODO]
- public override bool Equals(object o) {
- throw new NotImplementedException ();
- }
- //[MonoTODO]
- public override int GetHashCode() {
- throw new NotImplementedException ();
- }
-
- //[MonoTODO]
- public override string ToString() {
- throw new NotImplementedException ();
- }
- // properties
- //[MonoTODO]
- public static ImageFormat Bmp {
- get { throw new NotImplementedException (); }
- }
-
- //[MonoTODO]
- public static ImageFormat Emf {
- get { throw new NotImplementedException (); }
- }
-
- //[MonoTODO]
- public static ImageFormat Exif {
- get { throw new NotImplementedException (); }
- }
-
- //[MonoTODO]
- public static ImageFormat Gif {
- get { throw new NotImplementedException (); }
- }
-
- //[MonoTODO]
- public Guid Guid {
- get { throw new NotImplementedException (); }
- }
-
- //[MonoTODO]
- public static ImageFormat Icon {
- get { throw new NotImplementedException (); }
- }
-
- //[MonoTODO]
- public static ImageFormat Jpeg {
- get { throw new NotImplementedException (); }
- }
-
- //[MonoTODO]
- public static ImageFormat MemoryBmp {
- get { throw new NotImplementedException (); }
- }
-
- //[MonoTODO]
- public static ImageFormat Png {
- get { throw new NotImplementedException (); }
- }
-
- //[MonoTODO]
- public static ImageFormat Tiff {
- get { throw new NotImplementedException (); }
- }
-
- //[MonoTODO]
- public static ImageFormat Wmf {
- get { throw new NotImplementedException (); }
- }
-
- }
- }
|