diff dwt/internal/image/JPEGComment.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/JPEGComment.d	Fri Sep 12 13:53:21 2008 +0200
+++ b/dwt/internal/image/JPEGComment.d	Sun Sep 14 01:45:57 2008 +0200
@@ -7,21 +7,26 @@
  *
  * 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.JPEGComment;
 
+import dwt.internal.image.JPEGVariableSizeSegment;
+import dwt.internal.image.JPEGFileFormat;
+import dwt.internal.image.LEDataInputStream;
 
 final class JPEGComment : JPEGVariableSizeSegment {
 
     public this(byte[] reference) {
         super(reference);
     }
-    
+
     public this(LEDataInputStream byteStream) {
         super(byteStream);
     }
-    
-    public int signature() {
+
+    public override int signature() {
         return JPEGFileFormat.COM;
     }
 }