Numworks Epsilon  1.4.1
Graphing Calculator Operating System
usb_connected_controller.h
Go to the documentation of this file.
1 #ifndef USB_USB_CONNECTED_CONTROLLER_H
2 #define USB_USB_CONNECTED_CONTROLLER_H
3 
4 #include <escher.h>
5 #include "../shared/message_view.h"
6 
7 namespace USB {
8 
10 public:
12  View * view() override { return &m_messageView; }
13  bool handleEvent(Ion::Events::Event event) override { return false; }
14 private:
15  MessageView m_messageView;
16 };
17 
18 }
19 
20 #endif
21 
bool handleEvent(Ion::Events::Event event) override
Definition: app.cpp:5
Definition: view.h:23