Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019 #ifndef GNASH_SWF_REMOVEOBJECTTAG_H
00020 #define GNASH_SWF_REMOVEOBJECTTAG_H
00021
00022 #include "DisplayListTag.h"
00023 #include "SWF.h"
00024
00025
00026 namespace gnash {
00027 class SWFStream;
00028 class MovieClip;
00029 class swf_event;
00030 class movie_definition;
00031 class DisplayList;
00032 class RunResources;
00033 }
00034
00035 namespace gnash {
00036 namespace SWF {
00037
00039
00042 class RemoveObjectTag : public DisplayListTag
00043 {
00044 public:
00045
00046 RemoveObjectTag()
00047 :
00048 DisplayListTag(-1)
00049 {}
00050
00052 void read(SWFStream& in, TagType tag);
00053
00055 void executeState(MovieClip* m, DisplayList& dlist) const;
00056
00057 static void loader(SWFStream& in, TagType tag, movie_definition& m,
00058 const RunResources& r);
00059
00060 private:
00061
00062 int _id;
00063
00064 };
00065
00066 }
00067 }
00068
00069
00070 #endif // GNASH_SWF_REMOVEOBJECTTAG_H
00071
00072
00073
00074
00075
00076