Back to home page

EIC code displayed by LXR

 
 

    


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

0001 // om- ; TEST=SOpticksTest om-t
0002 
0003 #include "OPTICKS_LOG.hh"
0004 #include "SOpticks.hh"
0005 
0006 int main(int argc, char** argv)
0007 {   
0008     OPTICKS_LOG(argc, argv); 
0009 
0010     const char* argforced = nullptr ; 
0011     SOpticks ok(argc, argv, argforced ); 
0012     LOG(info) << " ok.hasArg(\"--hello\") " << ok.hasArg("--hello") ;  
0013 
0014 
0015 
0016     return 0 ; 
0017 }
0018 // om- ; TEST=SOpticksTest om-t