ImageSequence.st
changeset 617 20a86b0e23d2
child 631 5e1743a03c89
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ImageSequence.st	Tue Jun 24 13:16:55 1997 +0200
@@ -0,0 +1,60 @@
+"
+ COPYRIGHT (c) 1997 by eXept Software AG 
+	      All Rights Reserved
+
+ This software is furnished under a license and may be used
+ only in accordance with the terms of that license and with the
+ inclusion of the above copyright notice.   This software may not
+ be provided or otherwise made available to, or used by, any
+ other person.  No title to or ownership of the software is
+ hereby transferred.
+
+
+"
+
+Object subclass:#ImageSequence
+	instanceVariableNames:'frames'
+	classVariableNames:''
+	poolDictionaries:''
+	category:'Graphics-Images'
+!
+
+!ImageSequence class methodsFor:'documentation'!
+
+copyright
+"
+ COPYRIGHT (c) 1997 by eXept Software AG 
+	      All Rights Reserved
+
+ This software is furnished under a license and may be used
+ only in accordance with the terms of that license and with the
+ inclusion of the above copyright notice.   This software may not
+ be provided or otherwise made available to, or used by, any
+ other person.  No title to or ownership of the software is
+ hereby transferred.
+
+
+"
+!
+
+documentation
+"
+    An ImageSequence represents a sequence of images as contained
+    in an animated gif or in a movie file.
+    ImageSequence itself is abstract and possibly redefined to hold
+    additional attributes by specific movie representations.
+
+    [author:]
+        Claus Gittinger
+
+    [see also:]
+        ImageFrame
+        Image
+"
+! !
+
+!ImageSequence class methodsFor:'documentation'!
+
+version
+    ^ '$Header: /cvs/stx/stx/libview2/ImageSequence.st,v 1.1 1997-06-24 11:16:55 cg Exp $'
+! !