Back to home page

sPhenix code displayed by LXR

 
 

    


Last indexation completed on 2025-08-06 08:23:02 UTC

 
  Name Size Date (UTC) Last indexed Description
  Name Size Date (UTC) Last indexed Description
folder Parent directory - 2025-08-06 08:00:33  
aaa.cpp 83 bytes 2025-08-06 08:00:33 2025-08-06 08:12:44

include "aaa.h" void aaa::print(){ std::cout << constant::ccc << std::endl; }

aaa.h 145 bytes 2025-08-06 08:00:33 2025-08-06 08:12:44

ifndef

bbb.cpp 74 bytes 2025-08-06 08:00:33 2025-08-06 08:12:44

include "bbb.h" bbb::bbb(){ aaa * a = new aaa(); a -> print(); }

bbb.h 115 bytes 2025-08-06 08:00:33 2025-08-06 08:12:44

ifndef

constant.cpp 62 bytes 2025-08-06 08:00:33 2025-08-06 08:12:44

include "constant.h" namespace constant{ int ccc = 10; }

constant.h 89 bytes 2025-08-06 08:00:33 2025-08-06 08:12:44

ifndef