summaryrefslogtreecommitdiff
path: root/client/.metadata/.plugins/org.eclipse.core.resources/.history/1/f02df33e860d00131719b896d543f08c
diff options
context:
space:
mode:
Diffstat (limited to 'client/.metadata/.plugins/org.eclipse.core.resources/.history/1/f02df33e860d00131719b896d543f08c')
-rw-r--r--client/.metadata/.plugins/org.eclipse.core.resources/.history/1/f02df33e860d00131719b896d543f08c31
1 files changed, 31 insertions, 0 deletions
diff --git a/client/.metadata/.plugins/org.eclipse.core.resources/.history/1/f02df33e860d00131719b896d543f08c b/client/.metadata/.plugins/org.eclipse.core.resources/.history/1/f02df33e860d00131719b896d543f08c
new file mode 100644
index 0000000..0c5fcbc
--- /dev/null
+++ b/client/.metadata/.plugins/org.eclipse.core.resources/.history/1/f02df33e860d00131719b896d543f08c
@@ -0,0 +1,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
+ }
+
+}