//Editor-Info: -*- C++ -*-
//
//Subject: Scheduler Framework
//
//File: schedulerhandle.cpp
//
//Version: $Revision: 1.3 $
//
//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 "schedulerhandle.h"

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

sfSchedulerHandle :: sfSchedulerHandle(sfTask *task_)
    : _task(task_)
{
    return;
}


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

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

