| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- // created on 21.02.2002 at 17:06
- //
- // FrameDimension.cs
- //
- // Author: Christian Meyer
- // eMail: [email protected]
- //
- namespace System.Drawing.Imaging {
- using System;
- public sealed class FrameDimension {
- // constructor
- public FrameDimension (Guid guid) {}
- //properties
- public Guid Guid {
- get {
- throw new NotImplementedException ();
- }
- }
-
- public static FrameDimension Page {
- get {
- throw new NotImplementedException ();
- }
- }
-
- public static FrameDimension Resolution {
- get {
- throw new NotImplementedException ();
- }
- }
-
- public static FrameDimension Time {
- get {
- throw new NotImplementedException ();
- }
- }
-
- //methods
- public override bool Equals (object o) {
- throw new NotImplementedException ();
- }
-
- public override int GetHashCode () {
- throw new NotImplementedException ();
- }
-
- public override string ToString() {
- throw new NotImplementedException ();
- }
- //destructor
- ~FrameDimension () {}
- }
- }
|