//Editor-Info: -*- C++ -*-
//
//Subject: TOVE project / CPCS protocol
//
//File: cpcsstate.cpp
//
//Version: $Revision: 1.11 $
//
//State: $State: Exp $
//
//Date: $Date: 1998/07/21 13:28:43 $
//
//Organisation:
//      Helsinki University of Technology
//      Laboratory of Telecommunications 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 <assert.h>
#include "cpcsstate.h"
#include "pf/device.h"

cpcsState :: cpcsState(void)
    : pfState()
{
    return;
}

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


//
//Function: cpcsUNITDATAreqAct
//
//Description:
//     Default action for incoming CPCS data request primitive
//

void cpcsState :: cpcsUNITDATAreqAct(
    cpcsUNITDATAreq *,
    pfProtocol *) const
{
    return;
}

