mirror of https://github.com/PrimeDecomp/prime.git
26 lines
564 B
C++
26 lines
564 B
C++
#ifndef _TRESERVEDAVERAGE_HPP
|
|
#define _TRESERVEDAVERAGE_HPP
|
|
|
|
#include "types.h"
|
|
|
|
#include "rstl/optional_object.hpp"
|
|
#include "rstl/reserved_vector.hpp"
|
|
|
|
template < typename T, size_t N >
|
|
class TReservedAverage : rstl::reserved_vector< T, N > {
|
|
public:
|
|
TReservedAverage(const T& value) {
|
|
// resize(value, N); TODO
|
|
}
|
|
void AddValue(const T& value) {
|
|
push_back(value);
|
|
for (size_t i = size() - 1; i > 0; --i) {
|
|
operator[](i) = operator[](i - 1);
|
|
}
|
|
operator[](0) = value;
|
|
}
|
|
rstl::optional_object< T > GetAverage() const;
|
|
};
|
|
|
|
#endif
|