summaryrefslogtreecommitdiff
path: root/client/.metadata/.plugins/org.eclipse.core.resources/.history/1/f02df33e860d00131719b896d543f08c
blob: 0c5fcbc96e7b1b9079dc8ace85eb00d2d454e61c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
package com.macaroon.piztor;

import android.annotation.SuppressLint;
import java.util.HashMap;
import java.util.Vector;

public class Infomation {
	static String ip = "69.85.86.42";
	static int port = 9990;
	static int token = -1;
	static int myId = -1;
	static int myGroup = -1;
	class UserInfo {
		int id;
		double lat, lot;
	}

	class Group {
		int id;
		Vector<UserInfo> v;
	}
	
	static HashMap<Integer, Group> mp;
	
	@SuppressLint("UseSparseArrays")
	static void init() {
		mp = new HashMap<Integer, Group>();
		mp = new Spa
	}
	
}