//Editor-Info: -*- C++ -*-
//
//Subject: TOVE project / IE
//
//File: callingpartynumber.h
//
//Version: $Revision: 1.5 $
//
//State: $State: Exp $
//
//Date: $Date: 1999/02/10 14:10:55 $
//
//Organisation:
//      Helsinki University of Technology
//      Laboratory of Telecommunications Software and Multimedia
//
//Author:
//      Sami Raatikainen
//
//Description:
//
//
//Copyright:
//      Copyright 1999 Helsinki University of Technology
//      ALL RIGHTS RESERVED BETWEEN JANUARY 1996 AND JUNE 1999.
//
//Licence:
//
//
//History: 
//

#ifndef __IE_CALLINGPARTYNUMBER_H__
#define __IE_CALLINGPARTYNUMBER_H__

#include "partynumber.h"

class ieCallingPartyNumber : public iePartyNumber
{
    public:
        ieCallingPartyNumber(void);
        ieCallingPartyNumber(const ieCallingPartyNumber &other_);
        virtual ~ieCallingPartyNumber(void);
//        const ieCallingPartyNumber &operator=(const ieCallingPartyNumber &other_);

        pfIE *clone(void) const;
	static ieCallingPartyNumber* narrow(pfIE *ie_);

        void setPresentationIndicator(int value_);
        int getPresentationIndicator(void) const;
        void setScreeningIndicator(int value_);
        int getScreeningIndicator(void) const;
        
    private:
        int _presentation;
        int _screening;
};

#endif // __IE_CALLINGPARTYNUMBER_H__

