Main Page   Namespace List   Class Hierarchy   Alphabetical List   Compound List   File List   Namespace Members   Compound Members   File Members   Related Pages  

event.cc

Go to the documentation of this file.
00001 #include "event.hh"
00002 
00003 namespace anoid {
00004     namespace base {
00005 
00006         void Event::addArgument(Object *o) {
00007             argv.push_back(o);
00008             argc++;
00009         }
00010 
00011         void Event::addData(void *d) {
00012             data.push_back(d);
00013             datacount++;
00014         }
00015 
00016     };
00017 };

Anoid NG © Michael Westergaard, Martin Stig Stissing, Ronni Michael Laursen, and Kristian Bisgaard Lassen