FrameDimension.cs 1018 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. // created on 21.02.2002 at 17:06
  2. //
  3. // FrameDimension.cs
  4. //
  5. // Author: Christian Meyer
  6. // eMail: [email protected]
  7. //
  8. namespace System.Drawing.Imaging {
  9. using System;
  10. public sealed class FrameDimension {
  11. // constructor
  12. public FrameDimension (Guid guid) {}
  13. //properties
  14. public Guid Guid {
  15. get {
  16. throw new NotImplementedException ();
  17. }
  18. }
  19. public static FrameDimension Page {
  20. get {
  21. throw new NotImplementedException ();
  22. }
  23. }
  24. public static FrameDimension Resolution {
  25. get {
  26. throw new NotImplementedException ();
  27. }
  28. }
  29. public static FrameDimension Time {
  30. get {
  31. throw new NotImplementedException ();
  32. }
  33. }
  34. //methods
  35. public override bool Equals (object o) {
  36. throw new NotImplementedException ();
  37. }
  38. public override int GetHashCode () {
  39. throw new NotImplementedException ();
  40. }
  41. public override string ToString() {
  42. throw new NotImplementedException ();
  43. }
  44. //destructor
  45. ~FrameDimension () {}
  46. }
  47. }