use std::io::Read;
use crate::prelude::Rinex;
use rtcm_rs::msg::message::Message;
pub struct RNX2RTCM<W: Write> {
encoder: Encoder<W>,
}
impl Iterator for RNX2RTCM {
type Item = Option<Message>;
fn next(&mut self) -> Option<Self::Item> {
None
}
}
impl RNX2BIN {
pub fn new<W: Write>(w: W) -> Self {
Self {
encoder: Encoder::new(r),
}
}
}