예제 #1
0
 public override BooleanExp Replace(BooleanExp exp, char c)
 {
     throw new NotImplementedException();
 }
예제 #2
0
 public abstract BooleanExp Replace(BooleanExp exp, char c);
예제 #3
0
 public AndExpression(BooleanExp op1, BooleanExp op2)
 {
     _operand1 = op1;
     _operand2 = op2;
 }
예제 #4
0
 public NotExpression(BooleanExp exp)
 {
     this.exp = exp;
 }