コード例 #1
0
ファイル: MatrixReference.cs プロジェクト: shranjan/pinac
    static void Main()
    {
        MatrixReference dec = new MatrixReference();
        string mtext;
        mtext = "double";

        VariableElement name = new VariableElement();
        name.setText("a");
        dec.settype(mtext);
        dec.setvariable(name);
        string d;
        Element e;
        d= dec.gettype();
        e = (Element)dec.getvariable();
    }  
コード例 #2
0
ファイル: Visitor.cs プロジェクト: zuzhu/pinac
 public abstract void VisitMatrixReference(MatrixReference element);
コード例 #3
0
ファイル: InterpreterVisitor_.cs プロジェクト: rkpandya/pinac
 public override void VisitMatrixReference(MatrixReference element)
 {
     //throw new NotImplementedException();
 }