summaryrefslogtreecommitdiff
path: root/src/monitor.rs
diff options
context:
space:
mode:
authorGraham Northup <grissess@nexusg.org>2017-10-07 02:14:17 -0400
committerGraham Northup <grissess@nexusg.org>2017-10-07 02:14:17 -0400
commit255f0aa6de604e0bf9d37ba0ee5362ef3b9f235f (patch)
treee24314201b849746dd53f8060f48df81cd18853e /src/monitor.rs
parent22dd5bc5862e91330c8da0d5f141998cdbe546fb (diff)
Graphics working
But in need of terrible refactoring. Rust is beautiful sometimes. This is not one of those times.
Diffstat (limited to 'src/monitor.rs')
-rw-r--r--src/monitor.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/monitor.rs b/src/monitor.rs
index bef3fbc..ffe688a 100644
--- a/src/monitor.rs
+++ b/src/monitor.rs
@@ -34,3 +34,5 @@ pub type Data = HashMap<DatumKind, Datum>;
pub trait Monitor {
fn process(&mut self, data: &Data);
}
+
+pub type MonBox = Box<Monitor>;