summaryrefslogtreecommitdiff
path: root/lib/lennart/DataInterface.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/lennart/DataInterface.py')
-rw-r--r--lib/lennart/DataInterface.py24
1 files changed, 0 insertions, 24 deletions
diff --git a/lib/lennart/DataInterface.py b/lib/lennart/DataInterface.py
deleted file mode 100644
index 4495db2..0000000
--- a/lib/lennart/DataInterface.py
+++ /dev/null
@@ -1,24 +0,0 @@
-class DataInterface:
- def runMeasure(self):
- """
- Implemented in subclasses.
-
- Starts the measurement
- """
- raise NotImplementedError("The method not implemented")
-
- def getData(self):
- """
- Implemented in subclasses
-
- :returns: gathered data
- """
- raise NotImplementedError("The method not implemented")
-
- def forceStopMeasure(self):
- """
- Implemented in subclasses
-
- Force stops the measurement
- """
- raise NotImplementedError("The method not implemented")