checkin for Herv Poussineau <poussine@freesurf.fr>.
[mono.git] / mcs / class / System.Drawing / System.Drawing.Printing / PrintController.cs
index dcfa59828e70f42ef10de8ba9536d3d58350cc36..727b34a95a7a217d907b557b5bc1bb1ed293c670 100644 (file)
@@ -15,28 +15,14 @@ namespace System.Drawing.Printing
        /// </summary>
        public abstract class PrintController
        {
-               public PrintController()
-               {
-                       //
-                       // TODO: Add constructor logic here
-                       //
-               }
-
-               [MonoTODO]
                public virtual void OnEndPage(PrintDocument document, PrintPageEventArgs e){
-                       throw new NotImplementedException ();
                }
-               [MonoTODO]
                public virtual void OnStartPrint(PrintDocument document, PrintEventArgs e){
-                       throw new NotImplementedException ();
                }
-               [MonoTODO]
                public virtual void OnEndPrint(PrintDocument document, PrintEventArgs e){
-                       throw new NotImplementedException ();
                }
-               //[MonoTODO]
                public virtual Graphics OnStartPage(PrintDocument document, PrintPageEventArgs e){
-                       throw new NotImplementedException ();
+                       throw new NotImplementedException();
                }
        }
 }