X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FSMDS%2Fchrono.cxx;h=9493b7d165e8e8dce61e416b215c62dcada93ab4;hb=913aaa14de1406e2640ada90bbce495c95106966;hp=e09007076d86273ead8f3d88d8685b3bbb14200f;hpb=59627b07d70f4caa4c768be6805334d2610fa54c;p=modules%2Fsmesh.git diff --git a/src/SMDS/chrono.cxx b/src/SMDS/chrono.cxx index e09007076..9493b7d16 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-2016 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) : +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)