X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2Fbases%2Fchrono.hxx;h=e1641e6ca1015e19e7999925175d657aaa58b95d;hb=255150e4eec79294bbd06c7c464f309b4a264960;hp=e16fb3ec37027ed0e34804e2a2502a3b50c1da40;hpb=17b2be6fdceef9981751309428fbfe58f155c48e;p=modules%2Fyacs.git diff --git a/src/bases/chrono.hxx b/src/bases/chrono.hxx index e16fb3ec3..e1641e6ca 100644 --- a/src/bases/chrono.hxx +++ b/src/bases/chrono.hxx @@ -1,4 +1,4 @@ -// Copyright (C) 2006-2016 CEA/DEN, EDF R&D +// Copyright (C) 2006-2023 CEA, EDF // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public @@ -50,11 +50,11 @@ protected: int _nbChrono; }; -class YACSBASES_EXPORT chrono +class YACSBASES_EXPORT salome_chrono { public: - chrono(int i); - ~chrono(); + salome_chrono(int i); + ~salome_chrono(); void stop(); protected: bool _run; @@ -79,7 +79,7 @@ static timeval tv; #ifdef CHRONODEF #define CHRONO(i) counters::_ctrs[i]._ctrNames = (char *)__FILE__; \ counters::_ctrs[i]._ctrLines = __LINE__; \ - chrono aChrono##i(i); + salome_chrono aChrono##i(i); #define CHRONOSTOP(i) aChrono##i.stop();