|
|
@ -48,7 +48,7 @@ PDU::~PDU()
|
|
|
|
void PDU::addNullVariables( const IdentifierList &oids )
|
|
|
|
void PDU::addNullVariables( const IdentifierList &oids )
|
|
|
|
{
|
|
|
|
{
|
|
|
|
std::for_each( oids.begin(), oids.end(),
|
|
|
|
std::for_each( oids.begin(), oids.end(),
|
|
|
|
std::bind1st( std::mem_fun( &PDU::addNullVariable ), this ) );
|
|
|
|
std::bind( std::mem_fn( &PDU::addNullVariable ), this, std::placeholders::_1 ) );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void PDU::addNullVariable( Identifier oid )
|
|
|
|
void PDU::addNullVariable( Identifier oid )
|
|
|
|