Line data Source code
1 : /** \file magAOXApp.cpp
2 : * \brief Instantiation of the basic MagAO-X Application
3 : * \author Jared R. Males (jaredmales@gmail.com)
4 : *
5 : * History:
6 : * - 2021-01-05 created by JRM
7 : *
8 : * \ingroup app_files
9 : */
10 :
11 : #include "MagAOXApp.hpp"
12 :
13 : namespace MagAOX
14 : {
15 : namespace app
16 : {
17 :
18 1 : void sigUsr1Handler( int signum,
19 : siginfo_t * siginf,
20 : void *ucont
21 : )
22 : {
23 : static_cast<void>(signum);
24 : static_cast<void>(siginf);
25 : static_cast<void>(ucont);
26 :
27 1 : return;
28 : }
29 :
30 : template class MagAOXApp<true>;
31 : template class MagAOXApp<false>;
32 :
33 :
34 : }
35 : }
|