![]() |
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 //begin example "wns.queuingsystem.Job.hpp.example" 00029 #ifndef WNS_QUEUINGSYSTEM_JOB_HPP 00030 #define WNS_QUEUINGSYSTEM_JOB_HPP 00031 00032 #include <WNS/simulator/Time.hpp> 00033 #include <WNS/osi/PDU.hpp> 00034 #include <WNS/osi/PCI.hpp> 00035 #include <WNS/SmartPtr.hpp> 00036 00037 namespace wns { namespace queuingsystem { 00038 00039 // Jobs are the tasks that a queuingsystem has to process. In this model a 00040 // job can belong to two different job classes, jobs with low or high 00041 // priority. A job knows its priority and the moment of its birth. 00042 class Job : 00043 public wns::osi::PDU 00044 { 00045 public: 00046 00047 // Each Job can have a low or high priority. 00048 enum Priority { 00049 lowPriority = 0, 00050 highPriority 00051 }; 00052 00053 // By default jobs are created with a low priority 00054 Job(Priority priority = Job::lowPriority); 00055 00056 wns::simulator::Time 00057 getCreationTime() const; 00058 00059 Job::Priority 00060 getPriority() const; 00061 00062 private: 00063 00064 // Whenever a job is created it remembers its moment of birth 00065 wns::simulator::Time timeCreated_; 00066 00067 // The assigned priority of the job 00068 Priority priority_; 00069 }; 00070 typedef wns::SmartPtr<Job> JobPtr; 00071 } // queuingsystem 00072 } // wns 00073 00074 #endif // WNS_QUEUINGSYSTEM_JOB_HPP 00075 // end example
1.5.5