summaryrefslogtreecommitdiff
path: root/client/Piztor/src/com/macaroon/piztor/ResLocation.java
blob: f6622d563c08990b2f03801352885cc0e68db2ab (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.macaroon.piztor;

import java.util.Vector;

//--------------------------------------//
//			  Location Info			    //
//--------------------------------------//

public class ResLocation extends Res{
	Vector<Rlocation> l;	//vector for location info
	int n;					//number of location info
	
	ResLocation(int num,int status,Vector<Rlocation> locationvec){
		super(2,status);	//for type 2
		l = locationvec;
		n = num;
	}
}