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

//--------------------------------------//
//			     Log out      		    //
//--------------------------------------//

public class ReqLogout extends Req{
	
	ReqLogout(String token,String name,long time,long alive){
		super(4,token,name,time,alive);	//for type 4
	}
}