https://gitlab.opengeosys.org/ogs/ogs.git
Raw File
Tip revision: ccadc5304cb58e9e4fdece75a243d28ffb9aab6d authored by Lars Bilke on 12 January 2018, 08:26:45 UTC
[Jenkins] Fixed slow PETSc builds on envinf1.
Tip revision: ccadc53
Counter.h
/**
 * \copyright
 * Copyright (c) 2012-2018, OpenGeoSys Community (http://www.opengeosys.org)
 *            Distributed under a Modified BSD License.
 *              See accompanying file LICENSE.txt or
 *              http://www.opengeosys.org/project/license
 *
 */

#pragma once

#include <cstddef>

namespace BaseLib
{
template <typename X>
struct Counter
{
    Counter()
    {
        _counter_value++;
    }
    static std::size_t _counter_value;
};

template <typename X> std::size_t Counter<X>::_counter_value(0);

} // end namespace BaseLib
back to top