Woopsi 1.0
GUI Framework for Nintendo DS Homebrew
|
00001 #ifndef _LISTDATAEVENTARGS_H_ 00002 #define _LISTDATAEVENTARGS_H_ 00003 00004 #include "eventargs.h" 00005 00006 namespace WoopsiUI { 00007 00008 class ListData; 00009 00014 class ListDataEventArgs : public EventArgs<ListData*> { 00015 public: 00016 00021 inline ListDataEventArgs(ListData* source) : EventArgs<ListData*>(source) { } 00022 }; 00023 } 00024 00025 #endif