summaryrefslogtreecommitdiffstats
path: root/Src/PyCatcher/src/pyCatcherModel.py
diff options
context:
space:
mode:
Diffstat (limited to 'Src/PyCatcher/src/pyCatcherModel.py')
-rw-r--r--Src/PyCatcher/src/pyCatcherModel.py12
1 files changed, 8 insertions, 4 deletions
diff --git a/Src/PyCatcher/src/pyCatcherModel.py b/Src/PyCatcher/src/pyCatcherModel.py
index 7ece9b6..6473dc7 100644
--- a/Src/PyCatcher/src/pyCatcherModel.py
+++ b/Src/PyCatcher/src/pyCatcherModel.py
@@ -1,3 +1,5 @@
+import datetime
+
class BaseStationInformation:
def __init__ (self):
self.arcfn = 0
@@ -23,13 +25,15 @@ class BaseStationInformation:
self.s4 = fileobject.readline().split(' ')
return self
- def __str__ (self):
- return 'foo' + self.arcfn
+ def get_tree_data(self):
+ return [self.bsic, self.arcfn, self.rxlev, datetime.datetime.now().strftime("%H:%M:%S")]
class BaseStationInformationList:
def __init__(self):
- self.base_station_list
+ self.base_station_list = []
def add_station(self):
pass
- \ No newline at end of file
+
+ def get_dot_code(self):
+ pass \ No newline at end of file