James Kuszmaul | c0568f2 | 2014-03-05 20:33:00 -0800 | [diff] [blame] | 1 | #include "aos/common/time.h" |
2 | #include "aos/linux_code/init.h" | ||||
3 | #include "aos/common/logging/logging.h" | ||||
4 | #include "frc971/actions/catch_action.q.h" | ||||
5 | #include "frc971/actions/catch_action.h" | ||||
6 | |||||
7 | using ::aos::time::Time; | ||||
8 | |||||
9 | int main(int /*argc*/, char * /*argv*/ []) { | ||||
10 | ::aos::Init(); | ||||
11 | |||||
12 | frc971::actions::CatchAction action_catch( | ||||
13 | &::frc971::actions::catch_action); | ||||
14 | action_catch.Run(); | ||||
15 | |||||
16 | ::aos::Cleanup(); | ||||
17 | return 0; | ||||
18 | } | ||||
19 |