diff options
author | Aki <please@ignore.pl> | 2023-01-02 02:08:55 +0100 |
---|---|---|
committer | Aki <please@ignore.pl> | 2023-01-02 02:08:55 +0100 |
commit | e84f3eba125f64b852ae8755df3e1ab78aabeebf (patch) | |
tree | d895deb3407c6f31dcdff509057ebf4702e7e617 /stats | |
parent | 27216f78d7a08ffd14ad7040f76c8078ecdfd993 (diff) | |
download | kurator-e84f3eba125f64b852ae8755df3e1ab78aabeebf.zip kurator-e84f3eba125f64b852ae8755df3e1ab78aabeebf.tar.gz kurator-e84f3eba125f64b852ae8755df3e1ab78aabeebf.tar.bz2 |
Moved EventLog to stats module
Diffstat (limited to 'stats')
-rw-r--r-- | stats/include/kurator/stats/EventLog.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/stats/include/kurator/stats/EventLog.h b/stats/include/kurator/stats/EventLog.h new file mode 100644 index 0000000..353a0cd --- /dev/null +++ b/stats/include/kurator/stats/EventLog.h @@ -0,0 +1,17 @@ +#pragma once + +#include "BaseLog.h" +#include "events.h" + + +namespace kurator +{ +namespace stats +{ + + +using EventLog = BaseLog<ShipLeft>; + + +} // namespace stats +} // namespace kurator |