Back to home page

EIC code displayed by LXR

 
 

    


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

0001 #pragma once
0002 
0003 #include <string>
0004 #include "plog/Severity.h"
0005 #include "QUDARAP_API_EXPORT.hh"
0006 
0007 struct qbase ; 
0008 
0009 struct QUDARAP_API QBase
0010 {
0011     static const plog::Severity LEVEL ;
0012     static const QBase*         INSTANCE ; 
0013     static const QBase*         Get(); 
0014 
0015     static qbase* MakeInstance();
0016 
0017     QBase();  
0018     void init(); 
0019     std::string desc() const ; 
0020 
0021     qbase*  base ; 
0022     qbase*  d_base ; 
0023 
0024 };