/vqdr/trunk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/vqdr/trunk

« back to all changes in this revision

Viewing changes to src/libvqdr/operator/unary_operator.vala

  • Committer: Gustav Hartvigsson
  • Date: 2020-06-07 18:48:24 UTC
  • Revision ID: gustav.hartvigsson@gmail.com-20200607184824-jf14f7a1b1di2i2q
* Initial code - far from done

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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
}