blob: 4b2a8d16157c26cb72d6a7ccfccda57074500737 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
package com.macaroon.piztor;
//--------------------------------------//
// Respond to logout //
//--------------------------------------//
public class ResLogout extends Res{
ResLogout(int status){
super(4,status); //for type 4
}
}
|