Remove in-place translations support.
[dcpomatic.git] / src / lib / enum_indexed_vector.h
1 /*
2     Copyright (C) 2022 Carl Hetherington <cth@carlh.net>
3
4     This file is part of DCP-o-matic.
5
6     DCP-o-matic is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     DCP-o-matic is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.
18
19 */
20
21
22 #ifndef DCPOMATIC_ENUM_INDEXED_VECTOR_H
23 #define DCPOMATIC_ENUM_INDEXED_VECTOR_H
24
25
26 #include <vector>
27
28
29 template <typename Type, typename Enum>
30 class EnumIndexedVector
31 {
32 public:
33         EnumIndexedVector()
34                 : _data(static_cast<int>(Enum::COUNT))
35         {}
36
37         typename std::vector<Type>::reference operator[](int index) {
38                 return _data[index];
39         }
40
41         typename std::vector<Type>::const_reference operator[](int index) const {
42                 return _data[index];
43         }
44
45         typename std::vector<Type>::reference operator[](Enum index) {
46                 return _data[static_cast<int>(index)];
47         }
48
49         typename std::vector<Type>::const_reference operator[](Enum index) const {
50                 return _data[static_cast<int>(index)];
51         }
52
53         void clear() {
54                 std::fill(_data.begin(), _data.end(), {});
55         }
56
57         typename std::vector<Type>::const_iterator begin() const {
58                 return _data.begin();
59         }
60
61         typename std::vector<Type>::const_iterator end() const {
62                 return _data.end();
63         }
64
65         typename std::vector<Type>::iterator begin() {
66                 return _data.begin();
67         }
68
69         typename std::vector<Type>::iterator end() {
70                 return _data.end();
71         }
72
73 private:
74         std::vector<Type> _data;
75 };
76
77
78 #endif
79