Back to home page

EIC code displayed by LXR

 
 

    


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

0001 #include <cstring>
0002 #include "SOpBoundaryProcess.hh"
0003 
0004 SOpBoundaryProcess* SOpBoundaryProcess::INSTANCE = nullptr ; 
0005 SOpBoundaryProcess* SOpBoundaryProcess::Get(){ return INSTANCE ; 
0006 }
0007 SOpBoundaryProcess::SOpBoundaryProcess(const char* name_)
0008     :
0009     name(strdup(name_))
0010 {
0011     INSTANCE = this ; 
0012 }
0013 
0014 
0015