/vqdr/trunk

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