X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FSMDS%2Fchrono.hxx;h=3572e08ecc6fe46486ab693fc551c7c0d4867de7;hb=07ac4da8b237a9f7b8b87aa47e2fe0a8c2c8dbaf;hp=31e2828e0e6e9878d22ec188365f09de6c2a203b;hpb=7eda9ca931ed2a11cb5e4637e4ffe19f5c061115;p=modules%2Fsmesh.git diff --git a/src/SMDS/chrono.hxx b/src/SMDS/chrono.hxx index 31e2828e0..3572e08ec 100644 --- a/src/SMDS/chrono.hxx +++ b/src/SMDS/chrono.hxx @@ -1,4 +1,4 @@ -// Copyright (C) 2006-2016 CEA/DEN, EDF R&D, OPEN CASCADE +// Copyright (C) 2006-2019 CEA/DEN, EDF R&D, OPEN CASCADE // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public @@ -46,11 +46,11 @@ protected: static int _nbChrono; }; -class SMDS_EXPORT chrono +class SMDS_EXPORT salome_chrono { public: - chrono(int i); - ~chrono(); + salome_chrono(int i); + ~salome_chrono(); void stop(); protected: bool _run; @@ -61,7 +61,7 @@ protected: #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();