summaryrefslogtreecommitdiff
path: root/client/Piztor/src/com/macaroon/piztor/ResPushLocation.java
diff options
context:
space:
mode:
Diffstat (limited to 'client/Piztor/src/com/macaroon/piztor/ResPushLocation.java')
-rw-r--r--client/Piztor/src/com/macaroon/piztor/ResPushLocation.java18
1 files changed, 18 insertions, 0 deletions
diff --git a/client/Piztor/src/com/macaroon/piztor/ResPushLocation.java b/client/Piztor/src/com/macaroon/piztor/ResPushLocation.java
new file mode 100644
index 0000000..c3e2b64
--- /dev/null
+++ b/client/Piztor/src/com/macaroon/piztor/ResPushLocation.java
@@ -0,0 +1,18 @@
+package com.macaroon.piztor;
+
+import java.util.Vector;
+
+//--------------------------------------//
+// Push Location //
+//--------------------------------------//
+
+public class ResPushLocation extends Res{
+ Vector<RLocation> l; //vector for location info
+ int n; //number of location info
+
+ ResPushLocation(int num,Vector<RLocation> locationvec){
+ super(101,0); //for type 101
+ l = locationvec;
+ n = num;
+ }
+} \ No newline at end of file