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

//--------------------------------------//
//			Update Location				//
//--------------------------------------//

public class ReqUpdate extends Req{
	double lat;	//latitude
	double lot; //longitude
	
	ReqUpdate(int token,double latitude,double longitude,long time,long alive){
		super(2,token,time,alive);	//for type 2
		lat = latitude;
		lot = longitude;
	}
}