mirror of
https://github.com/lwip-tcpip/lwip.git
synced 2024-11-05 17:28:02 +00:00
10 lines
182 B
C#
10 lines
182 B
C#
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace Lextm.SharpSnmpLib.Mib
|
|||
|
{
|
|||
|
public interface ISymbolEnumerator: IEnumerator<Symbol>
|
|||
|
{
|
|||
|
bool PutBack(Symbol item);
|
|||
|
}
|
|||
|
}
|