Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 10:17:33

0001 
0002 // Copyright 2020, Jefferson Science Associates, LLC.
0003 // Subject to the terms in the LICENSE file found in the top-level directory.
0004 
0005 #pragma once
0006 
0007 class JApplication;
0008 
0009 /// JSignalHandler attaches signal handlers for USR1, USR2, and CTRL-C to a given JApplication instance.
0010 namespace JSignalHandler {
0011 
0012 void register_handlers(JApplication* app);
0013 
0014 }; // namespace JSignalHandler
0015