//Editor-Info: -*- C++ -*-
//
//Subject: TOVE project / ILMI
//
//File: ilmicommand.cpp
//
//Version: $Revision: 1.5 $
//
//State: $State: Exp $
//
//Date: $Date: 1998/10/20 13:03:12 $
//
//Organisation:
//      Helsinki University of Technology
//      Laboratory of Telecommunications Software and Multimedia
//
//Author:
//      Timo Pärnä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 "ilmicommand.h"

ilmiCommand :: ilmiCommand(void)
    : _requestID(0),
      _list()
{
    return;
}

ilmiCommand :: ilmiCommand(const ilmiCommand &other_)
    : _requestID(other_._requestID)
{
    // Copy constructor of VarBindList is not implemented.
    _list = other_._list; 
    return;
}


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

VarBind *ilmiCommand :: append(void)
{
    VarBind *var = _list.Append();
    return var;
}

VarBindList &ilmiCommand :: getVarBindList(void) const
{
    return _list;
}
