Back to home page

EIC code displayed by LXR

 
 

    


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

0001 #pragma once
0002 
0003 #include <string> 
0004 #include <map> 
0005 
0006 #include "SYSRAP_API_EXPORT.hh"
0007 
0008 struct SYSRAP_API SCount 
0009 {
0010     std::map<int, int>  mii ;  
0011 
0012     void add(int idx);  
0013     std::string desc() const ;     
0014     bool is_all(int count) const; 
0015 
0016 };