X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FSMDS%2Fchrono.cxx;h=ec16bf2dbdcfeb76cc125ee2849909e957516197;hb=6b45e1948462a8feb8618ea810ff2ec7fe00b6ea;hp=caa6031f404cba316ac1d7653271020a00cb00a4;hpb=6bac08c1a81f34d3f21c550bd92f83654b2546a5;p=modules%2Fsmesh.git diff --git a/src/SMDS/chrono.cxx b/src/SMDS/chrono.cxx index caa6031f4..ec16bf2db 100644 --- a/src/SMDS/chrono.cxx +++ b/src/SMDS/chrono.cxx @@ -1,4 +1,4 @@ -// Copyright (C) 2006-2015 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 @@ -59,20 +59,20 @@ void counters::stats() } } -chrono::chrono(int i) : - _ctr(i), _run(true) +salome_chrono::salome_chrono(int i) : + _run(true), _ctr(i) { //MESSAGE("chrono::chrono " << _ctr << " " << _run); _start = clock(); } -chrono::~chrono() +salome_chrono::~salome_chrono() { if (_run) stop(); } -void chrono::stop() +void salome_chrono::stop() { //MESSAGE("chrono::stop " << _ctr << " " << _run); if (_run)