FrameDimension.cs 1.0 KB

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