summaryrefslogtreecommitdiff
path: root/client/Piztor/src/com/macaroon/piztor/ReqUpdate.java
blob: b7b8fbaa7c6288f4edfa083a34760da20b6536fc (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(String token,String name,double latitude,double longitude,long time,long alive){
		super(1,token,name,time,alive);	//for type 1
		lat = latitude;
		lot = longitude;
	}
}