File indexing completed on 2024-04-28 05:32:12

0001 /*
0002     this file is part of the oxygen gtk engine
0003     SPDX-FileCopyrightText: 2012 Hugo Pereira Da Costa <hugo.pereira@free.fr>
0004 
0005     SPDX-License-Identifier: LGPL-2.0-or-later
0006 */
0007 
0008 #include "oxygenobjectcountermap.h"
0009 
0010 namespace Oxygen
0011 {
0012 
0013     //___________________________________________________
0014     ObjectCounterMap& ObjectCounterMap::get( void )
0015     {
0016         static ObjectCounterMap singleton;
0017         return singleton;
0018     }
0019 
0020 }