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
17namespace apra
18{
19
21{
22public:
23 StorageMinimalInfo(std::string partition, uint64_t size, std::string fsType);
25 virtual ~StorageMinimalInfo();
26
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_ */
StorageMinimalInfo & operator=(const StorageMinimalInfo &other)