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

//--------------------------------------//
//			Ask Location				//
//--------------------------------------//

public class ReqLocation extends Req{
	int gid;	//group id;
	
	ReqLocation(String token,String name,int groupid,long time,long alive){
		super(2,token,name,time,alive);	//for type 2
		gid = groupid;
	}
}