/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/utils/pair.vala

  • Committer: Gustav Hartvigsson
  • Date: 2022-06-01 12:14:52 UTC
  • Revision ID: gustav.hartvigsson@gmail.com-20220601121452-ntu94w67q3dhhfeq
More work torwards inperementing the parser.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * The contects of this file is in the Public Domain.
 
3
 *
 
4
 * Created by Gustav Hartivgsson.
 
5
 */
 
6
[CCode (cname = "V", cprefix = "v_")]
 
7
namespace  Utils {
 
8
  [CCode (cname = "VPair", cprefix = "v_pair_")]
 
9
  public class Pair<T1, T2> {
 
10
    public T1 v1;
 
11
    public T2 v2;
 
12
 
 
13
    public Pair (T1 v1, T2 v2) {
 
14
      this.v1 = v1;
 
15
      this.v2 = v2;
 
16
    }
 
17
  }
 
18
}