OpenShot Audio Library | OpenShotAudio 0.4.0
juce_UMPView.h
1/*
2 ==============================================================================
3
4 This file is part of the JUCE library.
5 Copyright (c) 2022 - Raw Material Software Limited
6
7 JUCE is an open source library subject to commercial or open-source
8 licensing.
9
10 The code included in this file is provided under the terms of the ISC license
11 http://www.isc.org/downloads/software-support-policy/isc-license. Permission
12 To use, copy, modify, and/or distribute this software for any purpose with or
13 without fee is hereby granted provided that the above copyright notice and
14 this permission notice appear in all copies.
15
16 JUCE IS PROVIDED "AS IS" WITHOUT ANY WARRANTY, AND ALL WARRANTIES, WHETHER
17 EXPRESSED OR IMPLIED, INCLUDING MERCHANTABILITY AND FITNESS FOR PURPOSE, ARE
18 DISCLAIMED.
19
20 ==============================================================================
21*/
22
23#ifndef DOXYGEN
24
25namespace juce::universal_midi_packets
26{
27
43class View
44{
45public:
47 View() noexcept = default;
48
50 explicit View (const uint32_t* data) noexcept : ptr (data) {}
51
55 const uint32_t* data() const noexcept { return ptr; }
56
60 uint32_t size() const noexcept;
61
67 const uint32_t& operator[] (size_t index) const noexcept { return ptr[index]; }
68
70 const uint32_t* begin() const noexcept { return ptr; }
71 const uint32_t* cbegin() const noexcept { return ptr; }
72
74 const uint32_t* end() const noexcept { return ptr + size(); }
75 const uint32_t* cend() const noexcept { return ptr + size(); }
76
78 bool operator== (const View& other) const noexcept { return ptr == other.ptr; }
79
81 bool operator!= (const View& other) const noexcept { return ! operator== (other); }
82
83private:
84 const uint32_t* ptr = nullptr;
85};
86
87} // namespace juce::universal_midi_packets
88
89#endif
bool operator==(const View &other) const noexcept
Definition: juce_UMPView.h:78
bool operator!=(const View &other) const noexcept
Definition: juce_UMPView.h:81
uint32_t size() const noexcept
const uint32_t * data() const noexcept
Definition: juce_UMPView.h:55
const uint32_t * begin() const noexcept
Definition: juce_UMPView.h:70
const uint32_t * end() const noexcept
Definition: juce_UMPView.h:74