]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
add fallback compile info of library
authorrichterm <richterm@f7af4fe6-9843-0410-8265-dc069ae4e863>
Tue, 13 Jan 2009 13:11:13 +0000 (13:11 +0000)
committerrichterm <richterm@f7af4fe6-9843-0410-8265-dc069ae4e863>
Tue, 13 Jan 2009 13:11:13 +0000 (13:11 +0000)
HLT/sim/AliHLTSimulation.cxx

index a5304a05e3e86162938de631716c19cbb814fd3c..e68d9c8fbc8b91b6ae38c2fd6ff8c5cf0c1a5e9f 100644 (file)
@@ -265,3 +265,11 @@ int AliHLTSimulationGetLibraryVersion()
   // see header file for function documentation
   return LIBHLTSIM_VERSION;
 }
+
+extern "C" void AliHLTSimulationCompileInfo(const char*& date, const char*& time)
+{
+  // the fall back compile info of the HLTsim library
+  // this is not up-to-date if other files have been changed and recompiled
+  date=__DATE__; time=__TIME__;
+  return;
+}