Imt.Base C++ API V4.1.1.0
Loading...
Searching...
No Matches
RamUsageInfo.h
Go to the documentation of this file.
1// (c) IMT - Information Management Technology AG, CH-9470 Buchs, www.imt.ch.
2
3#ifndef IMT_BASE_OS_LINUX_RAMUSAGEINFO_H
4#define IMT_BASE_OS_LINUX_RAMUSAGEINFO_H
5
7
8namespace imt {
9namespace base {
10namespace os {
11namespace linux {
12
17public:
18
23
30 RamUsageInfo(uint64_t totalRamBytes, uint64_t freeRamBytes, uint64_t usedRamBytes) noexcept;
31
36 uint64_t getTotalRamBytes() const noexcept;
37
42 uint64_t getFreeRamBytes() const noexcept;
43
48 uint64_t getUsedRamBytes() const noexcept;
49
50private:
51
52 uint64_t m_totalRamBytes;
53 uint64_t m_freeRamBytes;
54 uint64_t m_usedRamBytes;
55};
56
57} // namespace linux
58} // namespace os
59} // namespace base
60} // namespace imt
61
62#endif // IMT_BASE_OS_LINUX_RAMUSAGEINFO_H
Helper class to store RAM usage information.
uint64_t getFreeRamBytes() const noexcept
Gets the free amount of RAM memory.
uint64_t getTotalRamBytes() const noexcept
Gets the total amount of RAM memory.
RamUsageInfo(uint64_t totalRamBytes, uint64_t freeRamBytes, uint64_t usedRamBytes) noexcept
Constructor.
uint64_t getUsedRamBytes() const noexcept
Gets the used amount of RAM memory.
This is a application specific file which is used to configure Imt.Base.Core.Math.
unsigned __int64 uint64_t
Definition stdint.h:65