Revision 48968483656c7046270b82db8fc132dc6e445fa6 authored by Lars Bilke on 31 March 2023, 14:59:54 UTC, committed by Lars Bilke on 31 March 2023, 14:59:54 UTC
Strong types for additional safety

See merge request ogs/ogs!4539
2 parent s 63a5ac5 + 945094e
Raw File
MemWatch.h
/**
 * \file
 * \author Thomas Fischer
 * \date   2012-05-07
 * \brief  Definition of the MemWatch class.
 *
 * \copyright
 * Copyright (c) 2012-2023, 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

namespace BaseLib
{
class MemWatch
{
public:
    MemWatch();
    unsigned long getVirtMemUsage();

private:
    unsigned updateMemUsage();
    unsigned long vmem_size_ = 0;
};

}  // namespace BaseLib
back to top