From a0a45b2cda7316c232f2247bd947b3cd4024b496 Mon Sep 17 00:00:00 2001 From: Valentin Volkl <valentin.volkl@cern.ch> Date: Tue, 20 Sep 2016 19:50:07 +0200 Subject: [PATCH] Propagate changed function definition to header file. --- DDEve/include/DDEve/Dictionary.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/DDEve/include/DDEve/Dictionary.h b/DDEve/include/DDEve/Dictionary.h index e4846a7ca..d63c31ea2 100644 --- a/DDEve/include/DDEve/Dictionary.h +++ b/DDEve/include/DDEve/Dictionary.h @@ -40,10 +40,10 @@ #include "DDEve/DDG4EventHandler.h" namespace DD4hep { - void EveDisplay(const char* xmlFile); + void EveDisplay(const char* xmlFile, const char* eventFileName); struct DDEve { static void run(const char* xmlFile) { - EveDisplay(xmlFile); + EveDisplay(xmlFile, nullptr); } }; } @@ -55,7 +55,7 @@ namespace DD4hep { #pragma link C++ namespace DD4hep; -#pragma link C++ function DD4hep::EveDisplay(const char* xmlFile); +#pragma link C++ function DD4hep::EveDisplay(const char* xmlFile, const char* eventFileName); #pragma link C++ class DD4hep::DDEve; -- GitLab