//Editor-Info: -*- C++ -*-
//
//Subject: Scheduler Framework
//
//File: scheduler.cpp
//
//Version: $Revision: 1.2 $
//
//State: $State: Exp $
//
//Date: $Date: 1998/07/13 09:13:57 $
//
//Organisation:
//      Helsinki University of Technology
//      Laboratory of Telecommunications Software and Multimedia
//
//Author:
//      Juhana Räsänen
//
//Description:
//      See corresponding header file
//
//Copyright:
//      Copyright 1999 Helsinki University of Technology
//      ALL RIGHTS RESERVED BETWEEN JANUARY 1996 AND JUNE 1999.
//
//Licence:
//
//
//History: 

#include "scheduler.h"

//
// Method: constructor
//
// Description:
//     Empty base class constructor.
//

sfScheduler :: sfScheduler(void)
{
    return;
}


//
// Method: destructor
//
// Description:
//     Empty base class destructor.
//

sfScheduler :: ~sfScheduler(void)
{
    return;
}


//
// Method: run
//
// Description:
//     Default implementation of the run method: calls step() forever.
//

void sfScheduler :: run(void)
{
    while (1)
    {
        step();
    }
    return;
}

