using System; using System.Collections.Generic; using System.Text; using CLab.Auxiliary; namespace CLab { /// /// Expression consisting of an integer /// public class IntExpression : Expression { private int? integer; /// /// Constructor /// /// Integer value of public IntExpression(int integer) : base(Common.ExprType.et_val) { this.integer = integer; } /// /// Returns the integer value /// public int IntegerValue { get { return (int)this.integer; } } } }