summaryrefslogtreecommitdiff
path: root/client/Piztor/src/com/macaroon/piztor/ResPushLocation.java
blob: c3e2b64f1acb60b3cea4f1bfb15ffd01041b7e6f (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;

//--------------------------------------//
//			  Push Location			    //
//--------------------------------------//

public class ResPushLocation extends Res{
	Vector<RLocation> l;	//vector for location info
	int n;					//number of location info
	
	ResPushLocation(int num,Vector<RLocation> locationvec){
		super(101,0);	//for type 101
		l = locationvec;
		n = num;
	}
}