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 18 |
/* * The contects of this file is in the Public Domain. * * Created by Gustav Hartivgsson. */ [CCode (cname = "V", cprefix = "v_")] namespace Utils { [CCode (cname = "VPair", cprefix = "v_pair_")] public class Pair<T1, T2> { public T1 v1; public T2 v2; public Pair (T1 v1, T2 v2) { this.v1 = v1; this.v2 = v2; } } } |