00001 #include "eventargs.h" 00002 00003 #ifndef _LISTDATAEVENTARGS_H_ 00004 #define _LISTDATAEVENTARGS_H_ 00005 00006 namespace WoopsiUI { 00007 00008 class ListData; 00009 00013 class ListDataEventArgs : public EventArgs<ListData*> { 00014 public: 00015 00020 inline ListDataEventArgs(ListData* source) : EventArgs<ListData*>(source) { } 00021 }; 00022 } 00023 00024 #endif