2003/12/13 08:13:34
[org.ibex.core.git] / src / org / xwt / plat / PalmOS.java
index 208c2b8..10ab6e5 100644 (file)
@@ -1,6 +1,7 @@
 // Copyright 2003 Adam Megacz, see the COPYING file for licensing [GPL]
 package org.xwt.plat;
 import org.xwt.*;
+import java.io.*;
 
 /** Platform class for PalmOS devices */
 public class PalmOS extends Platform {
@@ -10,4 +11,8 @@ public class PalmOS extends Platform {
         return 0;
     }
 
+    protected void _decodeJPEG(InputStream is, Picture p) {
+        throw new Error("unimplemented");
+    }
+
 }