Main Page   Namespace List   Class Hierarchy   Compound List   File List   Namespace Members   Compound Members   File Members  

ScheduledEvent.cxx

Go to the documentation of this file.
00001 // $Id: ScheduledEvent.cxx,v 1.1.1.1 1999/12/20 22:27:42 burnett Exp $
00002 
00003 
00004 #include "facilities/ScheduledEvent.h"
00005 #include "facilities/Scheduler.h"
00006 
00007 #include <typeinfo>
00008 void ScheduledEvent::schedule(double t, ScheduledEvent* next)
00009 {
00010     Scheduler::instance()->schedule(t, next);
00011 }
00012 
00013 std::string ScheduledEvent::name()const
00014 {
00015     const std::type_info& t = typeid(*this);
00016     return t.name();
00017 }

Generated at Wed Nov 21 12:20:21 2001 by doxygen1.2.3 written by Dimitri van Heesch, © 1997-2000