summaryrefslogtreecommitdiffstats
path: root/src/common/mod.rs
diff options
context:
space:
mode:
authorPaul Masurel <paul.masurel@gmail.com>2016-10-15 12:16:30 +0900
committerPaul Masurel <paul.masurel@gmail.com>2016-10-15 12:16:30 +0900
commit0f246ba908a16d5bbdb0290b4e50ae0cc018d5c6 (patch)
treea02813b220a83014c1768f8c5e1a389732a0a81c /src/common/mod.rs
parent746d6284d9cf55853d0b21fc1ed1a238cdd0ea34 (diff)
bug/4 Introduce segment_updater
Diffstat (limited to 'src/common/mod.rs')
-rw-r--r--src/common/mod.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/common/mod.rs b/src/common/mod.rs
index e4322d2..918a740 100644
--- a/src/common/mod.rs
+++ b/src/common/mod.rs
@@ -1,12 +1,14 @@
mod serialize;
mod timer;
mod vint;
+mod living_counter_latch;
pub use self::serialize::BinarySerializable;
pub use self::timer::Timing;
pub use self::timer::TimerTree;
pub use self::timer::OpenTimer;
pub use self::vint::VInt;
+pub use self::living_counter_latch::LivingCounterLatch;
use std::io;
@@ -24,4 +26,4 @@ pub trait HasLen {
fn is_empty(&self,) -> bool {
self.len() == 0
}
-} \ No newline at end of file
+}