Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-04-09 07:49:34

0001 #pragma once
0002 
0003 #include <bitset>
0004 #include "SYSRAP_API_EXPORT.hh"
0005 
0006 template<unsigned N>
0007 struct SYSRAP_API SEnabled
0008 {
0009     std::bitset<N>* enabled ; 
0010     SEnabled(const char* spec); 
0011     bool isEnabled(unsigned idx) const ; 
0012 }; 
0013 
0014