/vqdr/trunk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/vqdr/trunk
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
namespace VQDR.Expression {
  
  /**
   * Implementers of this interface can be unary.
   */
  public interface UnaryOperator {
    
    /**
     * Defines weather the ipmelementer is unary or not.
     * 
     * If set to @true, the token that implements this is unary.
     * 
     * If set to @false, the token is not unary.
     */
    public abstract bool is_unary {public get; public set;}
  }
}