Enroute Flight Navigation
A navigation app for VFR pilots
ByteSize.h
1/***************************************************************************
2 * Copyright (C) 2023 by Stefan Kebekus *
3 * stefan.kebekus@gmail.com *
4 * *
5 * This program is free software; you can redistribute it and/or modify *
6 * it under the terms of the GNU General Public License as published by *
7 * the Free Software Foundation; either version 3 of the License, or *
8 * (at your option) any later version. *
9 * *
10 * This program is distributed in the hope that it will be useful, *
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
13 * GNU General Public License for more details. *
14 * *
15 * You should have received a copy of the GNU General Public License *
16 * along with this program; if not, write to the *
17 * Free Software Foundation, Inc., *
18 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
19 ***************************************************************************/
20
21#pragma once
22
23#include <QQmlEngine>
24
32
33namespace Units {
34
37 class ByteSize {
38 Q_GADGET
39 QML_VALUE_TYPE(byteSize)
40
41 public:
42 ByteSize() = default;
43 ByteSize(const ByteSize&) = default;
44 ByteSize(ByteSize&&) = default;
45 ByteSize& operator=(const ByteSize&) = default;
46 ByteSize& operator=(ByteSize&&) = default;
47
52 ByteSize(size_t val) : value(val) {}
53
58 [[nodiscard]] Q_INVOKABLE bool isNull() const { return value == 0; }
59
64 operator size_t() const { return value; }
65
66 private:
67 size_t value {0};
68 };
69} // namespace Units
70
71// Declare meta types
72Q_DECLARE_METATYPE(Units::ByteSize)
Convenience class for size_t.
Definition ByteSize.h:37
Q_INVOKABLE bool isNull() const
Check if zero.
Definition ByteSize.h:58
ByteSize(size_t val)
Conversion from size_t to Units::ByteSize.
Definition ByteSize.h:52
Conversion between units used in aviation.
Definition Angle.h:34