source: azure_iot_hub_f767zi/trunk/asp_baseplatform/lwip/contrib-2.1.0/apps/LwipMibCompiler/SharpSnmpLib/Mib/Elements/Entities/OidValueAssignment.cs@ 457

Last change on this file since 457 was 457, checked in by coas-nagasima, 4 years ago

ファイルを追加

  • Property svn:eol-style set to native
  • Property svn:mime-type set to text/x-csharp;charset=UTF-8
File size: 795 bytes
Line 
1/*
2 * Created by SharpDevelop.
3 * User: lextm
4 * Date: 2008/5/17
5 * Time: 20:49
6 *
7 * To change this template use Tools | Options | Coding | Edit Standard Headers.
8 */
9
10using System;
11
12namespace Lextm.SharpSnmpLib.Mib.Elements.Entities
13{
14 /// <summary>
15 /// Object identifier node.
16 /// </summary>
17 public sealed class OidValueAssignment : EntityBase
18 {
19 /// <summary>
20 /// Creates a <see cref="OidValueAssignment"/>.
21 /// </summary>
22 /// <param name="module">Module</param>
23 /// <param name="name">Name</param>
24 /// <param name="lexer">Lexer</param>
25 public OidValueAssignment(IModule module, SymbolList preAssignSymbols, ISymbolEnumerator symbols)
26 : base(module, preAssignSymbols, symbols)
27 {
28 }
29 }
30}
Note: See TracBrowser for help on using the repository browser.