//Editor-Info: -*- C++ -*-
//
//Subject: TOVE project / SCCP Interface
//
//File: sccpclprimitives.h
//
//Version: $Revision: 1.7 $
//
//State: $State: Exp $
//
//Date: $Date: 1998/02/05 14:14:38 $
//
//Organisation:
//      Helsinki University of Technology
//      Laboratory of Telecommunications Software and Multimedia
//
//Author:
//      Timo Pärnänen
//
//
//Description:
//      Base class definition for SCCP connectionless primitives
//      between SCCP and its user.
//
//Copyright:
//
//
//Licence:
//
//
//History: 

#ifndef __SCCPCLPRIMITIVES_H__
#define __SCCPCLPRIMITIVES_H__

#include "pf/messenge.h"
#include "pf/storage.h"
#include "pf/frame.h"

//
//Class: sccpCLprimitives
//
//Descriprion:
//    See file description.
//

class sccpCLprimitives : public pfMessenger
{
    public:
        virtual void setCalledAddress(pfStorage &calledAddress_);
        virtual pfStorage getCalledAddress(void) const;
        virtual void setCallingAddress(pfStorage &callingAddress_);
        virtual pfStorage getCallingAddress(void) const;
        virtual void setUserData(pfFrame &frame_);
        virtual pfFrame getUserData(void) const;

    protected:
        sccpCLprimitives(void);
	virtual ~sccpCLprimitives(void);
};

#endif // __SCCPCLPRIMITIVES_H__
