Warning, file /utilities/okteta/kasten/core/document/bytearrayselection.hpp was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).

0001 /*
0002     This file is part of the Okteta Kasten module, made within the KDE community.
0003 
0004     SPDX-FileCopyrightText: 2007-2008 Friedrich W. H. Kossebau <kossebau@kde.org>
0005 
0006     SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
0007 */
0008 
0009 #ifndef KASTEN_BYTEARRAYSELECTION_HPP
0010 #define KASTEN_BYTEARRAYSELECTION_HPP
0011 
0012 // lib
0013 #include "oktetakastencore_export.hpp"
0014 // Kasten core
0015 #include <Kasten/AbstractModelSelection>
0016 // Okteta core
0017 #include <Okteta/AddressRange>
0018 
0019 namespace Kasten {
0020 
0021 class OKTETAKASTENCORE_EXPORT ByteArraySelection : public AbstractModelSelection
0022 {
0023 public:
0024     ByteArraySelection();
0025     ~ByteArraySelection() override;
0026 
0027 public:
0028     void setRange(const Okteta::AddressRange& range);
0029 
0030 public:
0031     Okteta::AddressRange range() const;
0032     bool isValid() const;
0033 
0034 private:
0035     Okteta::AddressRange mRange;
0036 };
0037 
0038 }
0039 
0040 #endif