ApraLinuxUtils
1.0.0
C++ utility library for embedded Linux systems
Loading...
Searching...
No Matches
StorageMinimalInfo.h
Go to the documentation of this file.
1
/*
2
* StorageInfo.h
3
*
4
* Copyright (c) 2024 Apra Labs
5
*
6
* This file is part of ApraUtils.
7
*
8
* Licensed under the MIT License.
9
* See LICENSE file in the project root for full license information.
10
*/
11
12
#ifndef INCLUDES_APRA_MODELS_STORAGEMINIMALINFO_H_
13
#define INCLUDES_APRA_MODELS_STORAGEMINIMALINFO_H_
14
#include <cstdint>
15
#include <string>
16
17
namespace
apra
18
{
19
20
class
StorageMinimalInfo
21
{
22
public
:
23
StorageMinimalInfo
(std::string partition, uint64_t size, std::string fsType);
24
StorageMinimalInfo
();
25
virtual
~StorageMinimalInfo
();
26
27
StorageMinimalInfo
&
operator=
(
const
StorageMinimalInfo
& other);
28
std::string
m_partition
;
29
uint64_t
m_size
;
30
std::string
m_fsType
;
31
};
32
33
}
/* namespace apra */
34
35
#endif
/* INCLUDES_APRA_MODELS_STORAGEMINIMALINFO_H_ */
apra::StorageMinimalInfo
Definition
StorageMinimalInfo.h:21
apra::StorageMinimalInfo::operator=
StorageMinimalInfo & operator=(const StorageMinimalInfo &other)
Definition
StorageMinimalInfo.cpp:33
apra::StorageMinimalInfo::m_size
uint64_t m_size
Definition
StorageMinimalInfo.h:29
apra::StorageMinimalInfo::m_partition
std::string m_partition
Definition
StorageMinimalInfo.h:28
apra::StorageMinimalInfo::~StorageMinimalInfo
virtual ~StorageMinimalInfo()
Definition
StorageMinimalInfo.cpp:29
apra::StorageMinimalInfo::m_fsType
std::string m_fsType
Definition
StorageMinimalInfo.h:30
apra::StorageMinimalInfo::StorageMinimalInfo
StorageMinimalInfo()
Definition
StorageMinimalInfo.cpp:23
apra
Definition
EventCallbacks.h:16
includes
models
StorageMinimalInfo.h
Generated by
1.9.8