コード例 #1
0
ファイル: Generator.cs プロジェクト: adbrowne/abcm
 public void Parameter(OsgItem x, TypeDesc type, OsgClassMode @class)
 {
     throw new NotImplementedException();
 }
コード例 #2
0
ファイル: Parser.cs プロジェクト: adbrowne/abcm
 private void enter(OsgClassMode typ, int i, string name, TypeDesc type)
 {
     OsgObject osg = new OsgObject();
     osg.@class = typ;
     osg.val = i;
     osg.name = name;
     osg.type = type;
     osg.dsc = null;
     osg.next = topScope.next;
     topScope.next = osg;
 }