-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[CPP-41]Refactor velocity subtab with new paradigm fix bug in deque. (#…
…27) * Adding some tracking tab unittests. * [CPP-41]Refactor velocity subtab with new paradigm fix bug in deque. * Switch ProtoMsgSender -> MessageSender * Create type for arc mutex. * Respond to review requests.
- Loading branch information
1 parent
4db5fed
commit 50ff730
Showing
18 changed files
with
1,318 additions
and
442 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
// use std::sync::{Arc, Mutex}; | ||
|
||
use crate::solution_velocity_tab::SolutionVelocityTab; | ||
use crate::tracking_signals_tab::TrackingSignalsTab; | ||
use crate::types::*; | ||
|
||
pub struct MainTab<'a> { | ||
pub tracking_signals_tab: TrackingSignalsTab, | ||
pub solution_velocity_tab: SolutionVelocityTab<'a>, | ||
} | ||
|
||
impl<'a> MainTab<'a> { | ||
pub fn new(shared_state: SharedState) -> MainTab<'a> { | ||
MainTab { | ||
tracking_signals_tab: TrackingSignalsTab::new(shared_state.clone()), | ||
solution_velocity_tab: SolutionVelocityTab::new(shared_state), | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.