![]() |
User Manual, Developers Guide and API Documentation |
![]() |
00001 /******************************************************************************* 00002 * This file is part of openWNS (open Wireless Network Simulator) 00003 * _____________________________________________________________________________ 00004 * 00005 * Copyright (C) 2004-2007 00006 * Chair of Communication Networks (ComNets) 00007 * Kopernikusstr. 16, D-52074 Aachen, Germany 00008 * phone: ++49-241-80-27910, 00009 * fax: ++49-241-80-22242 00010 * email: info@openwns.org 00011 * www: http://www.openwns.org 00012 * _____________________________________________________________________________ 00013 * 00014 * openWNS is free software; you can redistribute it and/or modify it under the 00015 * terms of the GNU Lesser General Public License version 2 as published by the 00016 * Free Software Foundation; 00017 * 00018 * openWNS is distributed in the hope that it will be useful, but WITHOUT ANY 00019 * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR 00020 * A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more 00021 * details. 00022 * 00023 * You should have received a copy of the GNU Lesser General Public License 00024 * along with this program. If not, see <http://www.gnu.org/licenses/>. 00025 * 00026 ******************************************************************************/ 00027 00028 #ifndef WNS_EVENTS_SCHEDULER_IEVENT_HPP 00029 #define WNS_EVENTS_SCHEDULER_IEVENT_HPP 00030 00031 #include <WNS/RefCountable.hpp> 00032 #include <WNS/simulator/Time.hpp> 00033 #include <WNS/SmartPtr.hpp> 00034 #include <WNS/events/scheduler/Callable.hpp> 00035 #include <WNS/PythonicOutput.hpp> 00036 00037 namespace wns { namespace events { namespace scheduler { 00038 00046 class IEvent : 00047 virtual public wns::RefCountable, 00048 virtual public wns::PythonicOutput 00049 { 00050 public: 00064 class CancelException : 00065 wns::Exception 00066 { 00067 public: 00068 CancelException(const std::string& s); 00069 ~CancelException() throw() {} 00070 }; 00071 00072 virtual 00073 ~IEvent(); 00074 00075 virtual wns::simulator::Time 00076 getScheduled() const = 0; 00077 00078 virtual wns::simulator::Time 00079 getIssued() const = 0; 00080 00089 virtual void 00090 cancel() = 0; 00091 00096 virtual bool 00097 isNotSubmitted() const = 0; 00098 00102 virtual bool 00103 isQueued() const = 0; 00104 00108 virtual bool 00109 isRunning() const = 0; 00110 00115 virtual bool 00116 isFinished() const = 0; 00117 00121 virtual bool 00122 isCanceled() const = 0; 00123 00124 protected: 00125 virtual std::string 00126 doToString() const; 00127 }; 00128 00129 typedef wns::SmartPtr<IEvent> IEventPtr; 00130 00131 } 00132 } 00133 } 00134 #endif // NOT defined WNS_EVENTS_SCHEDULER_IEVENT_HPP
1.5.5