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

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

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