diff options
Diffstat (limited to 'parsecalldata.pde')
| -rw-r--r-- | parsecalldata.pde | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/parsecalldata.pde b/parsecalldata.pde index ba6e46f..80361c0 100644 --- a/parsecalldata.pde +++ b/parsecalldata.pde @@ -1,6 +1,10 @@ //BT IRELAND MTM,Destination CID Name,VIA,Calls,MINS,ALOC,% User,ASR,NER 02 boolean DEBUG=true; +import java.io.ObjectOutputStream; +import java.io.FileOutputStream; +import java.io.IOException; + class country { String name; float calls,mins; @@ -128,6 +132,9 @@ class bitmapcountry extends country { class calldata { + //serialise THIS + //take hard coded frame bounds out + Vector<bitmapcountry> countries = new Vector<bitmapcountry>(); HashMap<String, Integer> outlines = new HashMap<String, Integer>(); calldata(String[][] data,RShape shp) { @@ -164,4 +171,6 @@ class calldata { country getcountry(int w) { return countries.get(w); } + void serialise(String file) { + } } |
