File: ISymbolEnumerator.cs

package info (click to toggle)
lwip 2.2.1%2Bdfsg1-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 10,008 kB
  • sloc: ansic: 109,524; cs: 6,714; sh: 115; makefile: 112; perl: 81
file content (9 lines) | stat: -rw-r--r-- 179 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
using System.Collections.Generic;

namespace Lextm.SharpSnmpLib.Mib
{
    public interface ISymbolEnumerator: IEnumerator<Symbol>
    {
        bool PutBack(Symbol item);
    }
}