mirror of
https://github.com/lwip-tcpip/lwip.git
synced 2024-11-05 08:28:32 +00:00
ac46e42aa2
... from http://git.savannah.gnu.org/cgit/lwip/lwip-contrib.git/ into contrib/ subdir, STABLE-2_1_0_RELEASE tag lwIP contrib is now officially frozen TODO: Fix build
57 lines
1.4 KiB
C#
57 lines
1.4 KiB
C#
/*
|
|
* Created by SharpDevelop.
|
|
* User: lextm
|
|
* Date: 2008/5/17
|
|
* Time: 17:38
|
|
*
|
|
* To change this template use Tools | Options | Coding | Edit Standard Headers.
|
|
*/
|
|
|
|
using System.Collections.Generic;
|
|
|
|
namespace Lextm.SharpSnmpLib.Mib
|
|
{
|
|
/// <summary>
|
|
/// MIB document.
|
|
/// </summary>
|
|
public sealed class MibDocument
|
|
{
|
|
private readonly List<IModule> _modules = new List<IModule>();
|
|
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="MibDocument" /> class.
|
|
/// </summary>
|
|
/// <param name="file">The file.</param>
|
|
public MibDocument(string file)
|
|
: this(new Lexer(file))
|
|
{
|
|
}
|
|
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="MibDocument"/> class.
|
|
/// </summary>
|
|
/// <param name="lexer">The lexer.</param>
|
|
public MibDocument(Lexer lexer)
|
|
{
|
|
ISymbolEnumerator symbols = lexer.GetEnumerator();
|
|
|
|
Symbol current;
|
|
while ((current = symbols.NextNonEOLSymbol()) != null)
|
|
{
|
|
symbols.PutBack(current);
|
|
_modules.Add(new MibModule(symbols));
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// <see cref="MibModule"/> containing in this document.
|
|
/// </summary>
|
|
public IList<IModule> Modules
|
|
{
|
|
get
|
|
{
|
|
return _modules;
|
|
}
|
|
}
|
|
}
|
|
} |