// This file is part of https://github.com/SpringQL/SpringQL which is licensed under MIT OR Apache-2.0. See file LICENSE-MIT or LICENSE-APACHE for full license details.
#[derive(Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash, Debug)]
pub struct PipelineVersion(u64);
impl PipelineVersion {
pub fn new() -> Self {
Self(1)
}
pub fn up(&mut self) {
self.0 += 1;
}
}