mirror of
https://git.savannah.nongnu.org/git/lwip.git
synced 2026-03-24 11:05:43 +08: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);
|
|
}
|
|
}
|