diff dwt/internal/image/JPEGStartOfImage.d @ 34:5123b17c98ef

Ported dwt.events.*, dwt.graphics.GC, Region, dwt.internal.image.*
author Jacob Carlborg <doob@me.com> <jacob.carlborg@gmail.com>
date Sun, 14 Sep 2008 01:45:57 +0200
parents 1a8b3cb347e0
children
line wrap: on
line diff
--- a/dwt/internal/image/JPEGStartOfImage.d	Fri Sep 12 13:53:21 2008 +0200
+++ b/dwt/internal/image/JPEGStartOfImage.d	Sun Sep 14 01:45:57 2008 +0200
@@ -7,29 +7,34 @@
  *
  * Contributors:
  *     IBM Corporation - initial API and implementation
+ * Port to the D programming language:
+ *     Frank Benoit <benoit@tionex.de>
  *******************************************************************************/
-module dwt.internal.image;
+module dwt.internal.image.JPEGStartOfImage;
 
+import dwt.internal.image.JPEGFixedSizeSegment;
+import dwt.internal.image.LEDataInputStream;
+import dwt.internal.image.JPEGFileFormat;
 
 final class JPEGStartOfImage : JPEGFixedSizeSegment {
 
     public this() {
         super();
     }
-    
+
     public this(byte[] reference) {
         super(reference);
     }
-    
+
     public this(LEDataInputStream byteStream) {
         super(byteStream);
     }
-    
-    public int signature() {
+
+    public override int signature() {
         return JPEGFileFormat.SOI;
     }
-    
-    public int fixedSize() {
+
+    public override int fixedSize() {
         return 2;
     }
 }