The VisAO Camera
FilterWheelLocal_main.cpp
Go to the documentation of this file.
1 /************************************************************
2 * VisAOSimpleMotorCtrl_main.cpp
3 *
4 * Author: Jared R. Males (jrmales@email.arizona.edu)
5 *
6 * Contains the main program for the VisAO Simple Motor Controller.
7 *
8 * Developed as part of the Magellan Adaptive Optics system.
9 ************************************************************/
10 
11 /** \file FilterWheelLocal_main.cpp
12  * \author Jared R. Males
13  * \brief Contains the main program for the filter wheel controller.
14  *
15 */
16 
17 #include "FilterWheelLocal.h"
18 
19 
20 #define VISAO_APP_TYPE VisAO::FilterWheelLocal
21 #define VISAO_APP_NAME "filterwheel2Local"
22 
23 #include "VisAO_main.h"
24 
25 int main(int argc, char **argv)
26 {
27  extern int need_restart;
28 
29  need_restart = 1;
30  while(need_restart)
31  {
32  std::cout << "\n\nStarting main thread\n\n";
33  VisAO_main(argc, argv);
34  }
35 }
36 
Declarations for the FilterWheelLocal class, which interfaces with the VisAOSimpleMotorCtrl class via...
The main program for a VisAO application.