ORIGINAL
Loading...
Searching...
No Matches
baseArray.h
Go to the documentation of this file.
1#ifndef BASEARRAY_H
2#define BASEARRAY_H
3#include "serial.h"
4
5namespace original {
6
16
42 template <typename TYPE, typename ALLOC = allocator<TYPE>>
43 class baseArray : public serial<TYPE, ALLOC> {
44 protected:
52 using serial<TYPE, ALLOC>::serial;
53 };
54
55} // namespace original
56
57#endif //BASEARRAY_H
Base class for fixed-size serial containers.
Definition baseArray.h:43
Abstract base class for sequential containers with index-based access.
Definition serial.h:34
Main namespace for the project Original.
Definition algorithms.h:21
Defines an abstract base class for sequential containers with index-based access.