From 9852b855db2a65ea6eb5e877411634820214ddf0 Mon Sep 17 00:00:00 2001 From: John Denker Date: Sat, 16 Mar 2024 11:21:23 -0700 Subject: initial setup --- src/thrower.cxx | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 src/thrower.cxx (limited to 'src/thrower.cxx') diff --git a/src/thrower.cxx b/src/thrower.cxx new file mode 100644 index 0000000..9369ab9 --- /dev/null +++ b/src/thrower.cxx @@ -0,0 +1,12 @@ +#include "thrower.h" + + void thrower::newReading(const double rp0, const double ip0, + const double rp1, const double ip1) + { + emit _newReading(rp0, ip0, rp1, ip1); + } + + + void thrower::flush() { + emit _flush(); + } -- cgit v1.2.3