mirror of
https://github.com/eried/portapack-mayhem.git
synced 2025-07-01 10:06:49 -04:00
Move default constructor to .hpp.
This commit is contained in:
parent
969d9bd070
commit
0828c66b8a
2 changed files with 1 additions and 5 deletions
|
@ -44,10 +44,6 @@ SystemStatusView::SystemStatusView() {
|
||||||
|
|
||||||
/* Navigation ************************************************************/
|
/* Navigation ************************************************************/
|
||||||
|
|
||||||
NavigationView::NavigationView()
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
View* NavigationView::push_view(std::unique_ptr<View> new_view) {
|
View* NavigationView::push_view(std::unique_ptr<View> new_view) {
|
||||||
free_view();
|
free_view();
|
||||||
|
|
||||||
|
|
|
@ -52,7 +52,7 @@ private:
|
||||||
|
|
||||||
class NavigationView : public View {
|
class NavigationView : public View {
|
||||||
public:
|
public:
|
||||||
NavigationView();
|
NavigationView() { }
|
||||||
|
|
||||||
NavigationView(const NavigationView&) = delete;
|
NavigationView(const NavigationView&) = delete;
|
||||||
NavigationView(NavigationView&&) = delete;
|
NavigationView(NavigationView&&) = delete;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue