Tools and libraries to glue C/C++ APIs to high-level languages
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
using System; |
|
using System.Collections.Generic; |
|
|
|
public class Enumeration : Namespace { |
|
|
|
public struct Item { |
|
public string Name; |
|
public int Value; |
|
} |
|
|
|
public Enumeration (Node n) |
|
: base (n) |
|
{ |
|
this.Items = new List<Item> (); |
|
} |
|
|
|
public List<Item> Items { |
|
get; set; |
|
} |
|
} |
|
|
|
|